// JavaScript Document Pop Up


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

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

}
