var siteUrl = 'http://www.spapossedocorpo.com.br/';

function GetXmlHttpObject()
{var objXMLHttp1=null
if(window.XMLHttpRequest)
{objXMLHttp1=new XMLHttpRequest()}
else if(window.ActiveXObject)
{objXMLHttp1=new ActiveXObject("Microsoft.XMLHTTP")}
return objXMLHttp1}
function loadPhoto(photo)
{xmlHttpPhoto=GetXmlHttpObject()
if(xmlHttpPhoto==null)
{alert("Sem suporte a HTTP Request")
return}
var url=siteUrl+"admin/vis_foto.php";url=url+"?ft="+photo+"&"+new Date().getTime()+"&"+Math.random();xmlHttpPhoto.onreadystatechange=stateChangedPhoto
xmlHttpPhoto.open("GET",url,true)
xmlHttpPhoto.send(null)}
function stateChangedPhoto()
{if(xmlHttpPhoto.readyState==4)
{if(xmlHttpPhoto.status==200)
{document.getElementById('ajaxFoto').innerHTML=xmlHttpPhoto.responseText;}
else
{alert("Houve um problema ao obter os dados:\n"+xmlHttpPhoto.statusText);}}}
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);}
function hoverMenu(id,estilo)
{document.getElementById(id).style.backgroundPosition=estilo;}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}



function exibeAtividades(id,int)
{ 

xmlHttpeAtv=GetXmlHttpObject()
if (xmlHttpeAtv==null)
{
alert ("Sem suporte a HTTP Request")
return
} 

if(int=='terapias')
{
	var url=siteUrl+"ajax_atividades.php";
}
else
{
	var url=siteUrl+"ajax_estetica.php";	
}

url=url+"?rand="+new Date().getTime()+"&id="+id+"&"+Math.random();
//alert (url);
xmlHttpeAtv.onreadystatechange=stateChangedeAtv
xmlHttpeAtv.open("GET",url,true)
xmlHttpeAtv.send(null)
}


function stateChangedeAtv() 
{ 
if (xmlHttpeAtv.readyState==4 || xmlHttpeAtv.readyState=="complete")
{ 
document.getElementById("ajAtv").innerHTML=xmlHttpeAtv.responseText
} 
else
{
document.getElementById("ajAtv").innerHTML='<br><br><br><br><br><br><br><br><br><div align="center"><img src="'+siteUrl+'js/loader.gif"></div>';
}
} 

function limpa_campo( id, valor )
{
	if(document.getElementById( id ).value == '')
	{
		document.getElementById( id ).value = valor;
		document.getElementById( id ).style.color = "#999";
		document.getElementById( id ).style.fontWeight = 'bold';
	}
}

function preenche_campo( id, valor )
{
	if(document.getElementById( id ).value == valor)
	{
		document.getElementById( id ).style.color = "#000";
		document.getElementById( id ).style.fontWeight = 'normal';
		document.getElementById( id ).value = '';
	}
}
