
function InsertSampleMovie( path )
{
	document.write('<EMBED SRC="' + path + '" WIDTH=320 HEIGHT=255 AUTOPLAY=true CONTROLLER=true LOOP=false>');
}

function Popup_Open (url, width, height)
{
	InfoWindow = window.open(url,"PopupWindow","fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,location=no,width=" + width + ",height=" + height + ",left=200,top=200");
	if (window.focus) 
	{
		InfoWindow.focus() 
	}
}
