function milkypop(url,name,width,height,fset)
{
	myleft = phLeft;
	mytop = phTop+180-height+59;
	if(smallscreen) mytop += 5;
	if(document.all)
	{
		videoWin = window.open("",name,"fullscreen, height="+height+",width="+width+",left="+myleft+",top="+mytop);
		videoWin.blur();
		videoWin.focus();
		videoWin.resizeTo(width,height);
		videoWin.moveTo(myleft,mytop);
    frameString="<html>"+"<head>"+"<title>"+winTitle+"</title>"+"</head>"+"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+"<frame name='top' src='"+url+"' scrolling=auto>"+"<frame name='bottom' src='about:blank' scrolling='no'>"+"</frameset>"+"</html>";
    videoWin.document.open();
    videoWin.document.write(frameString)
    videoWin.document.close()
	}
	else
	{
	 	videoWin = window.open(url,name,"height="+height+",width="+width+",left="+myleft+",top="+mytop);
	}
	setTimeout("videoWin.focus();",500);
	if(fset == true) parent.frames['main'].videoWin = videoWin;
}