// generic launchWindow function
function launchWindow(url, name, width, height, scrollbars)
{
			screenX = (screen.width / 2) - (width / 2);
			screenY = 20;
			launchWin = window.open(url,name,"toolbar=no,directories=no,menubar=no,scrollbars=" + scrollbars + ",resizable=no,width=" + width + ",height=" + height + ",top=" + screenY + ",left=" + screenX + ",screenX=" + screenX + ",screenY=" + screenY);
}

function win_open_download(){
	window.setTimeout("launchWindow('download/', 'popup', '588', '518', 'yes')", 500);
}

function win_open_comment(){
	window.setTimeout("launchWindow('comment/', 'popup_comment', '800', '900', 'yes')", 500);
}

function win_open_theaters(){
	window.setTimeout("launchWindow('http://www.houyou-movie.com/theaters.html', 'popup_theaters', '657', '569', 'yes')",500);
}
