// JavaScript Document

function openWindow_play() {
	openWindow_small( "play.php" , "movie" );
}

function openWindow_small(url,win_name) {
	winwidth = 735
	winheight = 492
	window.name = "win";
	sw = screen.availWidth;
	sh = screen.availHeight;
	wl = (sw-winwidth)/2;
	wt = (sh-winwidth)/2;
	win = window.open(url,win_name,"width=" + winwidth + ",height=" + winheight + ",menubar=no,toolbar=no,SCROLLBARS=no,resizable=yes,left=" + wl + ",top=" + wt);
      //win = window.open(url,win_name,menubar=no,toolbar=no,SCROLLBARS=no,resizable=yes,width=750,height=492');
}


