function checkNumeric(value){
	return (value == parseInt(value) ? true : false);
}


function checkEmail(value){
	var regExpObj = /([a-zA-Z\._]+)(@)([a-zA-Z\._]+)(.)([a-zA-Z]{2,4})/;
	return regExpObj.test(value);	
}

function jumptolink(url){
	window.open(url, "");
}
