function openWindow(title, video,image){
   window.open('media.php?title='+ escape(title) + '&videofile=' + escape(video) + '&posterfile=' + escape(image),'video','width=750,height=480,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=no');
}

function openText(URL,x,y){
   var a = window.open(URL,'text','width=' + x + ',height=' + y + ',status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=no');
   if (a) a.focus();
} 

function openScroll(URL,x,y){
   var a = window.open(URL,'text','width=' + x + ',height=' + y + ',status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
   if (a) a.focus();
} 

function openMediaplayer(title, video){
   var a = window.open('windowsmediaplayer.php?title='+ escape(title) + '&videofile=' + escape(video),'video','width=370,height=290,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=no');
   if (a) a.focus();
} 
