<!-----
function form_submit_dog(){
	var w = 400;
	var h = 330;
	var new_window;

	document.vote.action='/cgi-bin/anq/custom_vote_dog.cgi';
	new_window = window.open('','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
	//new_window.moveTo(0,0);
	new_window.focus();
	document.vote.submit();
	return true;
}
function form_submit_cat(){
	var w = 400;
	var h = 330;
	var new_window;

	document.vote.action='/cgi-bin/anq/custom_vote_cat.cgi';
	new_window = window.open('','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
	//new_window.moveTo(0,0);
	new_window.focus();
	document.vote.submit();
	return true;
}
function view_result_dog(){
	var w = 400;
	var h = 330;
	var view_window;

	view_window = window.open('/cgi-bin/anq/custom_vote_dog.cgi?ACTION=view','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
	view_window.focus();
}
function view_result_cat(){
	var w = 400;
	var h = 330;
	var view_window;

	view_window = window.open('/cgi-bin/anq/custom_vote_cat.cgi?ACTION=view','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
	view_window.focus();
}
//----->
