/*open popup*/
function openVideo(path){
	
	screenW = window.screen.availWidth;
	screenH = window.screen.availHeight;
	windowH = 480;
	windowW	= 640;
	posL = (screenW - windowW)*.5;
	posT = (screenH - windowH)*.5;

	//path = "form.asp?type="+eh+"&comment="+comment;
	_w = window.open(path,'new','width='+windowW+',height='+windowH+',top='+posT+',left='+posL+',menubar=0,location=0,toolbar=0,personalbar=0,status=0,scrollbars=0');
	//_w.document.open();
	//_w.document.focus();

}