function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function myPopup()
{
	Width = 400;
	Height = 370;
	Top = (screen.height/2) - (Height/2);
	Left = (screen.width/2) - (Width/2);
	
	window.open("contact-us.php", "", "height=" + Height + ", width=" + Width + ", top=" + Top + ", left=" + Left);
}

function validateEmail(fld)
{
	var my=fld.value;
	var attherate=my.indexOf("@");
	var lastattherate = my.lastIndexOf("@")
	var dotpos=my.lastIndexOf(".");
	var posspace = my.indexOf(" ");
	var totallen = my.length;
	
	if (attherate<=0 || dotpos<=0 || attherate > dotpos || (dotpos-attherate)<=1 || (dotpos == totallen-1) || posspace > -1 || attherate!=lastattherate)
		return false;
	else
		return true;
}

function Trim(myval)
{
	return myval.split(" ").join("");
}