/*
 * this file is used to declare all the globals javascript vars 
 * of the application
 * */
 var Url = 'http://mediafx.susteen.com/';
 var Loader = '<div id="Loader"><img src="http://mediafx.susteen.com/assets/img/loader.gif" alt="" /><br />Loading...</div>';//the image that will be loaded
 //email validation function
 function validEmail(supposeEmailAddress) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(supposeEmailAddress)){
		return (true)
	}
	return (false)
}