function GetXmlHttpObject()
{ 
	var objXMLHttp1=null

	if (window.XMLHttpRequest)
	{
		objXMLHttp1=new XMLHttpRequest()
	}
	else if (window.ActiveXObject)
	{
		objXMLHttp1=new ActiveXObject("Microsoft.XMLHTTP")
	}
	return objXMLHttp1
}

function ajaxVideo(id)
{
	xmlHttp1=GetXmlHttpObject();
	if (xmlHttp1==null)
	{
		alert ("Sem suporte a HTTP Request");
		return;
	} 
	//alert (url);
	xmlHttp1.onreadystatechange=stateChangedVideo;
	xmlHttp1.open("GET","http://www6.compuland.com.br/terrasanta/ajax_video.php?id="+id,true);
	xmlHttp1.send(null);
}

function stateChangedVideo() 
{ 
	
    if (xmlHttp1.readyState == 4) 
	{
      
        	if (xmlHttp1.status == 200) 
			{
              	document.getElementById('video').innerHTML = xmlHttp1.responseText;
			}
    }	
	else
	{
		document.getElementById('video').innerHTML = '<div style="background:url(http://www6.compuland.com.br/terrasanta/modcss/elementos/loader-videos.gif) no-repeat top center; width: 80px; height:80px; position:relative; top:100px; left:210px; padding-top:70px; font-size:90%; font-weight:bold;">Carregando...</div>';
	}
}



var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


function fitContent()
{
	var scrWidth = screen.width;
	
	if (scrWidth > 1024)
		document.body.style.overflowX = 'hidden';
}

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
