// Jetvision JScript source code

function openPlayer(videoID) {

	var height = 695;

	var width = 880;



	var top = parseInt((screen.height - height) / 2, 10);

	var left = parseInt((screen.width - width) / 2, 10);	



	var url = "http://jetvision.zoomwvi.com/video.aspx?playerID=18"

	var windowParams = "top=" + top + ",left=" + left + ",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height;



	if (videoID != null)

		url += "&videoID=" + videoID;



	// Open the window.

	window.open(url, "SunshineTV", windowParams);

}

