function sendForm(formName){
	var f=document.getElementById(formName);
	f.submit();
}

function openPage(wUrl,wName){
	var opt;
	opt='left=0,top=0,menubar=no,location=yes,titlebar=no,directories=no,resizable=yes,scrollbars=no,status=no, width='+screen.width+', height='+screen.height;
	window.open(wUrl,wName,opt);
}