function popwin(u) { //1.0

	// DEFAULTS
	h 	= 100; 		//	height
	w 	= 500; 		// 	width
	l	= 'no';		//	location bar
	m	= 'no';		//	menu bar
	t 	= 'no';		// 	toolbar
	r 	= 'no';		// 	resizeable
	sc 	= 'no'; 	//	scrollbars
	st 	= 'no';	//	status bar 
	x 	= 10; 		// 	y from upper left corner of screen
	y 	= 10;		// 	y from upper left corner of screen
	n 	= 'pop';	// 	window name
	
	f ='height='+h+',width='+w+',top='+y+',left='+x+',resizable='+r+',scrollbars='+sc+',status='+st+',toolbar='+t+',menubar='+m+',location='+l;
	//alert(f);
	window.open(u,n,f);
}





function  popwindow_movie(name)  {
  x = window.open(name,"popwindow_movie","width=480,height=320,scrollbars=no,dependent");
if (window.focus) {newwindow.focus()}
	return false;
}



