// JavaScript Document
function openwin(){
	window.open ("survey/20090401/", "newwindow", "left=0,top=0,height=600, width=1002,toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no");
	window.focus();
}
function OpenVote(){
	var str="lotrovote20090401";
	if (document.cookie.indexOf(str) == -1){
		var date = new Date(); 
		date.setTime(new Date().getTime()+3600*1000*24); //1 
		document.cookie = str + "=" + escape("y") + ";expires=" + date.toGMTString();
		openwin();
	}
}