function notEmpty(elem, msg, myform){
	if(elem.value == '')
		alert(msg);
	else
		document.getElementById(myform).submit();
}
