function show(alfa, beta){

	if (document.getElementById(alfa).style.display == 'none'){
		document.getElementById(beta).style.listStyleImage = "url(images/li_on.gif)";
		document.getElementById(alfa).style.display = 'block';

	}else{

		document.getElementById(alfa).style.display = 'none';
		document.getElementById(beta).style.listStyleImage = "url(images/li_off.gif)";

	}

}

function wOpen(pURL, pName, w, h, scroll, text, specialSettings){
	xLeft=(screen.width)?(screen.width-w)/2:0;
	xTop=(screen.height)?(screen.height-h)/2:0;
	xSettings = 'height='+h+',width='+w+',top='+xTop+',left='+xLeft+',scrollbars='+scroll+specialSettings
	hwnd = window.open(pURL,pName,xSettings);
	if(hwnd.window.focus){hwnd.window.focus();}
	if(text != "") {
		hwnd.document.write(text);
		hwnd.document.close();
	}
	return hwnd;
}

var zoomHwnd;
function zoomImg(){
	if (zoomHwnd){
		zoomHwnd.close();
	}
		zoomHwnd = wOpen("", "", 530, 530, "yes", 
			"<html><head><title>MAYOPROPIEDADES.COM.AR</title></head><body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr align=center valign=middle><td><img src="+images[imgNow].src+"></td></tr></table></body></html>");
	/*}*/
}

var autoSwapping = false;
function swpImg(val, auto){
	if (auto){
		for (j=0; j < imgCount; j++){
			if (!images[j].complete) return;
		}
	}
	if (!auto && autoSwapping) autoSwapping = false;
	imgNow+=val;
        if (imgNow == imgCount) imgNow = 0; 
        	else if (imgNow < 0) imgNow = imgCount-1;

	document.imgProduct.src = images[imgNow].src;
	document.imgProduct.alt = images[imgNow].alt;
}

function swpImg(val, auto){
	if (auto){
		for (j=0; j < imgCount; j++){
			if (!images[j].complete) return;
		}
	}
	if (!auto && autoSwapping) autoSwapping = false;
	imgNow+=val;
        if (imgNow == imgCount) imgNow = 0; 
        	else if (imgNow < 0) imgNow = imgCount-1;

	document.imgProduct.src = images[imgNow].src;
	document.imgProduct.alt = images[imgNow].alt;
}
function clickImg(val){
	document.imgProduct.src = images[val].src;
	document.imgProduct.alt = images[val].alt;
}

function check_email(e) {
ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";

	for(i=0; i < e.length ;i++){
	if(ok.indexOf(e.charAt(i))<0){ 
	return (false);
	}	
	} 
}

function contacto(){
        if (document.contactenos.nombre.value ==''   ) {
                alert("Debe ingresar el nombre");
				return;
        }
        if (document.contactenos.email.value =='') {
                alert("Debe ingresar el email");
				document.contactenos.email.value.focus;
                return;
        }
        if (document.contactenos.mensaje.value =='') {
                alert("Debe ingresar el mensaje");
				document.contactenos.mensaje.value.focus;
                return;
        }                           
        document.contactenos.submit();
}
//document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>')





