﻿// JScript File

function openPlayer(sURL, lWidth, lHeight)
{
	var winwidth = lWidth; // width of the new window
    var winheight = lHeight; // height of the new window
    var winleft = (screen.width / 2) - (winwidth / 2); // center the window right to left
    var wintop = (screen.height / 2) - (winheight / 2); // center the window top to bottom
 
	window.open(sURL,"Player","top="+wintop+",left="+winleft+",width="+winwidth+",height="+winheight+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no"); // Yes or No
}
