// Betawatcher Javascript Functions


function closeRefresh()
{
	window.opener.document.location.reload(); 
	self.close();
}

function hideSubmit()
{
	window.loading.style.display = "block";
	window.submit.style.display = "none";
}

function popUpCustom(URL, width, height, scroller) 
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=" + scroller + ",location=0,statusbar=1,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left = 200,top = 200');");
}