
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
function chk_form(thisform)
	{
var amount=thisform.Amount.value
var to=thisform.To.options[thisform.To.options.selectedIndex].text
var from=thisform.From.options[thisform.From.options.selectedIndex].text
pageurl="currencyconverter.asp?amount="+amount+"&to="+to+"&from="+from+""
window.open(pageurl,'',' scrollbar=yes, width=600, height=430')
return false;


	}	
function chklogin(thisform)
		{
			if (thisform.email.value == "" || thisform.email.value.indexOf('@',0) == -1 || thisform.email.value.indexOf('.',0) == -1) 
				 {
				   alert ("Please enter a valid E-mail Address") ;
				   thisform.email.focus() ;
				   return false ;
				 }
	 
	 if (thisform.passwd.value == "")
			{
				alert("Please enter your password");
				thisform.passwd.focus();
				return false;
			}
	}
function printIt() 
{ 
window.print(); 
} 