function SendMail(address) {
	if (address == "a")
	{
    address = 'info@mansys.net?subject=Enquiry from WebSite';
	}
	else if (address == "b")
	{
    address = 'support@mansys.net?subject=WebSite Support Request ';
	}
    window.open('mailto:' + address, '_blank');
}

function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.email.value))
{
return true;
}
alert("Invalid email Address, please re-enter.");
return false;
}

function validateEmail(emailField) {
  emailpat = /^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-]+)+$/;
  if (!emailpat.test(emailField.value)) {               
    return false;
  }
    return true;
}

function isEmpty(aTextField) {
  if ((aTextField.value.length==0) || (aTextField.value == null)) {
    return true;
  }
  else { 
    return false;
  }
}

function clearBox(box) {
	if(box.value==box.defaultValue) 
	{
	 	box.value = "";
	 }
}

function CopyrightNotice() {
    var now = new Date();
    document.write("Copyright &copy; ManSys Limited, " + now.getYear());
}

function wopen(url, name, w, h)
{
  // Fudge factors for window decoration space.
  // In my tests these work well on all platforms & browsers.
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  var win = window.open(url, name, 'width=' + w + ', height=' + h + ', left=' + wleft + ', top=' + wtop + ', location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=no');
  // Just in case width and height are ignored
  win.resizeTo(w, h);
  // Just in case left and top are ignored
  win.moveTo(wleft, wtop);
  win.focus();
}

function date() {
    //Array of day names
    var dayNames = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
    //Array of month names
    var monthNames = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
    var now = new Date();
    document.write(dayNames[now.getDay()] + ', ' + monthNames[now.getMonth()] + ' ' + now.getDate() + ', ' + now.getYear());
}


			