function launchVideo(url,width,height)
{
	t	= (screen.height - height)/2;
	l	= (screen.width - width)/2;
	winstyle="width=" + width + ",height=" + height + ",status=no,toolbar=no,menubar=no,location=no,screenX=" + l + ",screenY=" + t + ",top=" + t + ",left=" + l + ",scrollbars=auto,resizable=no";
	w = window.open(url,'player',winstyle);
	return w;	
}


/*
var Popup_width=480;
var Popup_height=250;
function doPopup(x,y,name,url){
var t,l;
var w;

 t = (screen.height - y)/2;
 l = (screen.width - x)/2;
 winstyle="width=" + x + ",height=" + y + ",status=no,toolbar=no,menubar=no,location=no,screenX=" + l + ",screenY=" + t + ",top=" + t + ",left=" + l + ",scrollbars=auto,resizable=no";
 w = window.open(url,name,winstyle);
 return w;
}

function Launch(url)
{
doPopup(800,600,'player',url);
}
function Launch_100(url)
{
doPopup(246,295,'player',url);
}
function Launch_300(url)
{
doPopup(326,339,'player',url);
}
function Launch_500(url)
{
doPopup(646,519,'player',url);
}
*/