function openvrmWindow(url, name) {
	popupWin = window.open(url, name,"menubar=no,toolbar=no,location=no,status=yes,resizable,dependent,scrollbars,width=550,height=450,left=250,top=50");
	if (window.focus) { 
 		popupWin.focus();
	}
}

function ValEmail (obj, msg) {
    var str = obj.value;
    if ( str != "" ) {
		if ( !str.match(/^\w+([\.\-]\w+)*@\w+([\.\-]\w+)*\.\w+$/)) {
			if ( msg == "" ) {
                alert('Please check your email address to make sure it is correct!');
            }
            else {
                alert(msg);
            }
			obj.focus();  //
			return false;
		}
		else {
			return true;
		}
	}
	else {	
		alert ('Please enter your Email Address!');
		obj.focus();
		return false;
	}
}


