// JavaScript Document

    	
		if (document.images) {
			pianobuttonup = new Image();
			pianobuttonup.src = "Images/fingers2_.jpg";
			pianobuttondown = new Image();
			pianobuttondown.src = "Images/tclef.jpg";
		
			molabuttonup = new Image();
			molabuttonup.src = "Images/mola2_.jpg";
			molabuttondown = new Image();
			molabuttondown.src = "Images/geomola2_.jpg";

			
		}
		function buttondown( buttonname ) 
		{
    		if (document.images) {
      		  document[ buttonname ].src = eval( buttonname + "down.src" );
    		}
		}
		function buttonup ( buttonname )
		{
    		if (document.images) {
      		  document[ buttonname ].src = eval( buttonname + "up.src" );
			}
		}
 //alert(document.MyForm.test.value);




function checkForm() {
var valid = 0;

if (document.myForm.name.value=="") {
valid++;
alert("Please enter your name .")
document.myForm.name.focus();
}
if (document.myForm.email.value=="") {
valid++;
alert("Please .")
document.myForm.email.focus();
}
if (document.myForm.request.value=="") {
valid++;
alert("Please .")
document.myForm.request.focus();
}



if (valid < 1) {
return true;

}
else {  
return false;
}
}
