function runSubmit() {

 	if ( validateFields() == true ) {
	     document.forms[0].submit();
		return true;
	}

	return false;

}


var whitespace = " \t\n\r";

function isEmpty(s)
{   return ((s == null) || (s.length == 0))
}



function isWhitespace (s)

{   var i;

    if (isEmpty(s)) return true;

    for (i = 0; i < s.length; i++)
    {   
        var c = s.charAt(i);

        if (whitespace.indexOf(c) == -1) return false;
    }

    return true;
}



function isEmail(string) {

	if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
		return true;
	else
		return false;
}

function isLegitNum(string) {

	if (string.search(/[^0-9,]/) != -1)
		return false;
	else
		return true;
}

var exampleText = "This is an example";
var exampleTextTitle = "This is an example title";


function showHelp(x, y) {
    var OpenWindow=window.open("", "helpwin", "height=350,width=350,scrollbar=yes");
    OpenWindow.document.write("<HTML><HEAD>");
    OpenWindow.document.write("<TITLE>Help Window</TITLE>");
    OpenWindow.document.write("<base href=\"http://matrimonials.orissagateway.com/\">");
    OpenWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"css/omstyle.css\">");
    OpenWindow.document.write("</HEAD><BODY bgcolor=#ffcccc>");
    OpenWindow.document.write("<CENTER>");
    OpenWindow.document.write("<table width=100% border=0 cellpadding=3 cellspacing=1 bgcolor=#ffcccc><tr><td bgcolor=black><font color=#ffcccc><b>");
    OpenWindow.document.write(y);
    OpenWindow.document.write("</b></font></td></tr><tr><td>");
    OpenWindow.document.write(x);
    OpenWindow.document.write("<a href='' onClick='self.close()'> <center><p><b>Close window</b></p></center></a><p>");
    OpenWindow.document.write("</td></tr></table>");
    OpenWindow.document.write("</CENTER>");
    OpenWindow.document.write("</BODY></HTML>");
}
