

function winBRopen(theURL, Name, popW, popH, scroll, resize) { // V 1.0
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable='+resize+'';
	Win = window.open(theURL, Name, winProp);
	Win.window.focus();
}

function clearform(theform)
{
	for (var i = 0; i < theform.elements.length; i++) {
			 if (theform.elements[i].name.indexOf('txt') == 0) {
				theform.elements[i].value="";
				theform.elements[i].reset();
			 }else if(theform.elements[i].name.indexOf('cmb') == 0){
				theform.elements[i].value=0;		 	
			 }
	}
}

function checkEmail(emailToCheck)
	{
			var indexofchar = emailToCheck.lastIndexOf("@");
			if(indexofchar != -1)
			{
				return true;
			}
			else
			{
				alert("Please enter the Email address in the form abc@yahoo.com");
				return false;
			}
	}
