function validate_required(field,alerttxt){
	with (field) {
		if (value==null||value==""){
			alert(alerttxt);
			return false
		}
		else {
			return true
		}
	}
}

function validate_form(thisform){
	with (thisform){
		if (validate_required(name,"Your Name must be filled out!")==false){
			name.focus();
			return false
		}
		if (validate_required(phone,"Your Phone number must be filled out!")==false){
			phone.focus();
			return false
		}
	}
}

function malrinLogo(){
	document.getElementById('malrinlogo').style.display = "none";
	document.write('<object style="position:relative;top:8px;left:569px;" type="application/x-shockwave-flash" data="images/malrinlogo.swf" width="180" height="110" title="Malrin Components Logo">\n');
	document.write('<param name="movie" value="images/malrinlogo.swf" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('</object>\n');
}