/****************************************************************/
/* popup window	script						*/
/****************************************************************/

function popupWindow( theURL, theName, widthPopup, heightPopup )
{

	popupWin = window.open(theURL, theName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + widthPopup + ',height=' + heightPopup);
	
	popupWin.focus();

}

function popupMediaPlayer( theURL, theName, widthPopup, heightPopup )
{

	popupMP = window.open(theURL, theName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=1,top=1,width=' + widthPopup + ',height=' + heightPopup);
	setTimeout('popupMP.close()',1000);
}