// Ajax ###
var requi;
function loadXMLMenu(pagina,div){
    requi = null;
	divi = div;
    if (window.XMLHttpRequest) {
        requi = new XMLHttpRequest();
        requi.onreadystatechange = processReqChangeMenu;
        requi.open("GET", pagina, true);
        requi.send(null);
    } else if (window.ActiveXObject) {
        requi = new ActiveXObject("Microsoft.XMLHTTP");
        if (requi) {
            requi.onreadystatechange = processReqChangeMenu;
            requi.open("GET", pagina, true);
            requi.send();
        }
    }
}
function processReqChangeMenu(){
	if (requi.readyState == 1){
		document.getElementById(divi).innerHTML = "<div align='center'><font face='Verdana' size='-1'><strong>Carregando...</strong></font>";
	}
    if (requi.readyState == 4) {
		document.getElementById(divi).innerHTML = "Carregando...";
        if (requi.status == 200) {
            document.getElementById(divi).innerHTML = requi.responseText;
        } else {
            alert("Houve um problema ao obter os dados:\n" + requi.statusText);
			document.getElementById('text').innerHTML = "";
        }
    }

}

function ajaxF(pagina,div){
	loadXMLMenu(pagina,div);
}


// favoritos ###
function addfavorito(){
	title = "Namoro Pet"
	url = "http://www.namoropet.com.br"
	if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
	return true; }
}
// flash ###
function flasht(nome,width,height){
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+width+"' height='"+height+"'>");
   document.write("<param name='movie' value='"+ nome +"'>");
   document.write("<param name='quality' value='high'>");
   document.write("<param name='wmode' value='transparent'/>");
   document.write("<embed src='"+ nome +"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' wmode='transparent'></embed>");
   document.write("</object>");
}

function flash(nome,width,height){
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+width+"' height='"+height+"'>");
   document.write("<param name='movie' value='"+ nome +"'>");
   document.write("<param name='quality' value='high'>");
   document.write("<embed src='"+ nome +"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed>");
   document.write("</object>");
}

function imprimir(cod,tab)
{
	var desktop = window.open('../faleconosco/imprimir.asp?cod='+cod+'&tab='+tab, '_blank', 'left=150,top=80,width=440,height=360,toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=no')
}
