function $(id){return document.getElementById(id);}
function nav_onload(id){
	$(id).removeAttribute("href");
	$(id).className = "on";
}
/* vote */
var newWindow = null
function windowOpen(loadpos)
{	
	if (loadpos != '')
	{
		newWindow = window.open(loadpos,"votesystem","toolbar,resizable,scrollbars,dependent,width=400,height=350");
		newWindow.focus();
	}
	else 
	{
		newWindow = window.open(loadpos,"votesystem","toolbar,resizable,scrollbars,dependent,width=400,height=350");
		newWindow.focus();
		document.vote_form.submit();
	}
}