function validateinput(){
  var project = document.contact.contactname.value;
  var date = document.contact.contactemail.value;
  var task = document.contact.contactmessage.value;
  var hrsn = document.contact.validator.value;


  var errorsfound = false;
  var errormessage = "Please enter the correct information\n";
  
  temp = validateEmail('', date); 
  temp = trim(temp);
  
  if (project.length == 0){
   errormessage = errormessage +"Your Name:\n";
   errorsfound = true;
  }
  if(temp != '' || date.length == 0)
  {
  	errormessage = errormessage +"Invalid Email adress:\n";
  	errorsfound = true;
  }
  if (task.length == 0){
   errormessage = errormessage +"Messages/comments:\n";
   errorsfound = true;
  }
  if (hrsn.length == 0){
   errormessage = errormessage +"Validation code: \n";
   errorsfound = true;
  }

  if (errorsfound){
    alert (errormessage);
    return false
  }else{
  	return true;
  }
}
 function trim(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}

function validateEmail(this_name, this_value) {
		var re = new RegExp("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$");
		if (!re.test(this_value)) {
			return 'Invalid email address'+this_name+'\n';
		} else {
			return '';
		}
	}
	
function poponload()
{
testwindow= window.open ('rand/info.php', '',
    "location=0,status=0,scrollbars=0,width=390,height=390");
testwindow.moveTo(0,0);
}

function popload(filename,widthx,heightx)
{
testwindow= window.open (''+filename+'', '',
    "location=0,status=0,scrollbars=yes,width="+widthx+",height="+heightx+",resizable=yes");
testwindow.moveTo(0,0);
}



function maximizeStoryContainer()
{
document.getElementById("flash_movie").style.visibility = "hidden";
document.getElementById("ext_links").style.visibility = "hidden";
document.getElementById("headlines").style.visibility = "hidden";
document.getElementById("topmenu").style.top = "1%";
document.getElementById("menuitems").style.top = "5%";
var preview = document.getElementById("preview");
preview.style.visibility = "hidden";
preview.style.top = "9%";
preview.style.height = "89%";
preview.style.left = "1%";
preview.style.width = "96%";
preview.style.visibility = "visible";
}

function restoreStoryContainer()
{
var preview = document.getElementById("preview");
preview.style.visibility = "hidden";
preview.style.top = "33%";
preview.style.height = "67%";
preview.style.left = "20%";
preview.style.width = "53%";
preview.style.visibility = "visible";
document.getElementById("topmenu").style.top = "25%";
document.getElementById("menuitems").style.top = "29%";
document.getElementById("flash_movie").style.visibility = "visible";
document.getElementById("ext_links").style.visibility = "visible";
document.getElementById("headlines").style.visibility = "visible";
}
