// JavaScript Document

function PopPromo() {
	var w = 820;
	var h = 650;
	var leftPos = (screen.width / 2) - w/2
	var topPos = (screen.height / 2) - h/2
	var y = window.open('/contest/index.html', 'y', 'resizable=yes,scrollbars=no,width=' + w + ',height=' + h + ',left='+leftPos+',top='+topPos, false);
		//return false;
	}