function pedir_numero_visitas()
{
	url = "pedir_numero_visitas.php";
	if (window.XMLHttpRequest)
	{
	    req = new XMLHttpRequest();
	    req.onreadystatechange = processReqVisitas;
	    req.open("GET", url, true);
	    req.send(null);
	}
	else if (window.ActiveXObject)
    {   isIE = true;
        req = new ActiveXObject("Microsoft.XMLHTTP");
        if (req)
        {   req.onreadystatechange = processReqVisitas;
            req.open("GET", url, true);
            req.send();
        }
    }
}

function processReqVisitas()
{
    if (req.readyState == 4)
    {
        if (req.status == 200)
        {
			response  = req.responseText;
			document.getElementById('numero_visitas').innerHTML=response;
        }
        else
        {
            pedir_numero_visitas();
        }
    }
}

function bigf6(uno,a,b)
{	var dos=a;
	var tres=b;
	var tresb=eval(b)+eval(0);
	var seis=document.body.clientWidth-a+12;
	eval("venta=window.open(\"\",\"\",\"width="+dos+",height="+tresb+",scrollbars=NO,top=1,left="+seis+"\")") ;
	manera="<html><head><title><?php echo $nombre_empresa; ?></title>";
	manera+="<body topmargin=0 bottomargion=0 leftmargin=0 rightmargin=0  onDblClick='window.close();' >";
	manera+="<img src=\""+uno+"\" width=\""+dos+"\" height=\""+tres+"\">";
	manera+="</body></html>";
	eval("venta.document.write(manera);");
}