
function openCast(id){
	var h = 850;
	if ((screen.height - 30)<h){
		h = screen.height - 30;
	}
	var w = window.open('/countup2.php?gid='+id, 'cast', 'WIDTH=840,HEIGHT='+h+',scrollbars=yes,resizable=yes,location=no,menubar=no,status=yes,toolbar=no');
	w.focus();
}

function openEvent1(id){

	var w = 400;
	var h = 300;
	var x = (screen.width  - w) / 2;
	var y = (screen.height - h) / 2;

	var w = window.open('/event1.php?id='+id, 'event1', 'top='+y+',left='+x+',screenX='+x+',screenY='+y+',WIDTH='+w+',HEIGHT='+h+',scrollbars=no,resizable=no,location=no,menubar=no,status=no,toolbar=no');
	w.focus();

}

function openCastList(url){
	var w = window.open(url, 'tenpo');
	w.focus();
}

