function findPosX(obj)
  {
    var curleft = 0;
    if(obj.offsetParent)
        while(1)
        {
          curleft += obj.offsetLeft;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.x)
        curleft += obj.x;
    return curleft;
}

function findPosY(obj)
  {
    var curtop = 0;
    if(obj.offsetParent)
        while(1)
        {
          curtop += obj.offsetTop;
          if(!obj.offsetParent)
            break;
          obj = obj.offsetParent;
        }
    else if(obj.y)
        curtop += obj.y;
    return curtop;
}

function numeros() {
	var elemento = document.getElementById("btn_num");
	var posx = findPosX(elemento);
	var posy = findPosY(elemento);
	//alert(posx);
	//alert(posy);
	document.getElementById("num").style.display = "block";
	document.getElementById("num").style.top = posy - 74 + "px";
    document.getElementById("num").style.left = posx + 141 + "px";
}	

function numerosno() {
	document.getElementById("num").style.display = "none";
}

function numeros_i() {
	var elemento = document.getElementById("btn_num_i");
	var posx = findPosX(elemento);
	var posy = findPosY(elemento);
	//alert(posx);
	//alert(posy);
	document.getElementById("num").style.display = "block";
	document.getElementById("num").style.top = posy - 68 + "px";
    document.getElementById("num").style.left = posx + 125 + "px";
}	

function numerosno_i() {
	document.getElementById("num").style.display = "none";
}

function despliega_tel() {
	var page="http://www.cpmazatlan.com/esp/telefonos.html"
	newwin=window.open("","","toolbar=no,resizable=no,status=no,menubar=no,location=no,width=300,height=300,scrollbars=no,top=200,left=200")
	newwin.location=page;
}
				
function despliega_reg() {
	var page="http://www.cpmazatlan.com/esp/pre_registro.aspx"
	newwin=window.open("","","toolbar=no,resizable=no,status=no,menubar=no,location=no,width=600,height=400,scrollbars=no,top=200,left=200")
	newwin.location=page;
}
			
function facebook() {
	var page="http://www.facebook.com/pages/Crowne-Plaza-Resort-Mazatlan/120482264651835"
	newwin=window.open("","","toolbar=no,resizable=yes,status=no,menubar=no,location=no,width=1000,height=600,scrollbars=yes,top=50,left=50")
	newwin.location=page;
}

function blog() {
	var page="http://crowneplazamazatlan.blogspot.com/"
	newwin=window.open("","","toolbar=no,resizable=yes,status=no,menubar=no,location=no,width=1000,height=600,scrollbars=yes,top=50,left=50")
	newwin.location=page;
}

function chat() {
	window.open("https://livechat.boldchat.com/aid/6625247189577952510/bc.chat?cwdid=1016788784323143487&amp;wdid=1738251189982940306&amp;vr=&amp;vn=&amp;vi=&amp;ve=&amp;vp=&amp;iq=&amp;curl=","","top=50,left=50,width=640,height=480,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no"); 
}

