function form_submit(theForm){
	var w = 300;
	var h = 200;
	var new_window;

	new_window = window.open('','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
	//new_window.moveTo(0,0);
	new_window.focus();
	return true;
}
function view_result(){
	var w = 250;
	var h = 250;
	var view_window;

	view_window = window.open('http://www.tsuna7.jp/vote/cgi-bin/custom_vote.cgi?ACTION=view','new_open','scrollbars=0,toolbars=0,width=' + w + ',height=' + h);
}

