/*
	Javascript Function :
		The unclassified js will be stored here.
		
	Index :
		1. checkmail(thisEmail)						- Verify the user email valid or not
*/

// Verify the user email valid or not
function checkmail(thisEmail) {
	var emailfilter = /^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i
	var returnval = emailfilter.test(thisEmail);
	if (returnval == false)
		return false;
	else
		return true;
}

function under_construction() {
	windows.location.href="/under_construnction.php";
}