// JavaScript Document <!--

// functions 
function openEmbeddedPlayer()
{
   var features = "width=720,height=512,left=100,top=100";
   var then, now;
	open('','embeddedplayer','noresize,noscroll,status=no,menubar=no,toolbar=no,' + features);
   then = new Date().getTime();
   now = then;
   while((now - then) < 250)
   {
     now = new Date().getTime();
   }
   return true;
}

