 	
function isImageOk(img) {
    if (!img.complete) {
        return false;
    }
    if (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) {
        return false;
    }

    return true;
}


function checkPort()
{
	
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
	{
			document.getElementById("player").innerHTML="";
		document.getElementById("botonbox").innerHTML="<embed src='jizzipod.php' autoplay='true' type='audio/mpeg' target='myself'></embed>";
	}
	else
	{
		var checkUrl = "http://vivo.192.cl:8000/pixel.gif";
		var img = document.getElementById("check");
		img.src = checkUrl;
		
		checkLoad(0);
	};

};

function checkLoad(i)
{
	img = document.getElementById("check");
	var comp = isImageOk(img);
	if (comp==false)
	{
		i++;
		if(i>2) 
		{
			checkOut();
		}
		else
		{
			setTimeout("checkLoad("+i+")",1000);
		};
	} 


};
function checkOut()
{
	document.getElementById("fmp256").setconfig("player/minicaster2.xml",0);

};
