function  EW_checkMyFormMailing(EW_this) {
	if (EW_this.email && !EW_hasValue(EW_this.email, "TEXT" )) {
				if (!EW_onError(EW_this, EW_this.email, "TEXT", "El correo no puede estar vacio"))
					return false; 
			}

	if (EW_this.email && !EW_checkemail(EW_this.email.value)) {
			if (!EW_onError(EW_this, EW_this.email, "TEXT", "El formato del correo no es valido"))
				return false; 
			}

	return window.open('', 'mailingList', 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=1,width=400,height=200');
}
function openwindowlogintop(theURL) { //v2.0
 miPopup = window.open(theURL,'Descripcion','width=480,height=400,top=50, left=280, resizable=yes, scrollbars=yes');  
 miPopup.focus()
}

function  EW_checkMydeactivate() {

var theResponse = window.confirm("Desea desactivar esta cuenta?");

if (theResponse==true){
openwindowlogintop('deactivate.asp');
}


//return theResponse;
}


function  EW_checkMyDelCar(id) {

var theResponse = window.confirm("Desea borrar este producto?");

if (theResponse==true){
//openwindowlogintop('deactivate.asp');
document.location.href='?delete='+id
}


//return theResponse;
}