// JavaScript created by O. E. P. C.
function ChgImg(obj, img){
   obj.src = img;
}
function OpnWnd_300_225(img){
   var URL = ""+img;
   window.open(URL,'MDP','scrollbars=auto,width=300,height=225');
}
function OpnWnd_500_375(img){
   var URL = ""+img;
   window.open(URL,'MDP','scrollbars=auto,width=500,height=375');
}
function OpnWnd_800_600(img){
   var URL = ""+img;
   window.open(URL,'MDP','scrollbars=auto,width=800,height=600');
}
function ValEmail(){
   if(document.form1.name.value != "" && document.form1.email.value != "" 
	  && document.form1.comment.value != ""){
      document.form1.submit();
   }else{
      alert("No blank fields are permited.");
   }
}