// JavaScript Document


function play_popup(openstring,width,height) {
	//strict variables
	
	
	indenttop = (screen.height - height) / 2;
    indentleft = (screen.width - width) / 2;

											
    var popwin = window.open(openstring,"uniplayer","width=" + width + ",height=" + height + ",top=" + indenttop + ",left=" + indentleft + ",scrollbars=no, menubar=no, toolbar=no, resizable=no, status=no, titlebar=no");
    popwin.focus();

}
