// JavaScript Document

function createRequestObject()
{
   var ro;
   var browser = navigator.appName;
   if(browser == "Microsoft Internet Explorer")
   {
      ro = new ActiveXObject("Microsoft.XMLHTTP");
   }
   else
   {
	  ro = new XMLHttpRequest();
   }
   return ro;
}

var http = createRequestObject();

function abrirPag(valor)  /* function sndReq()  */
{
   var url = valor;
   http.open('get', url);
   http.onreadystatechange = handleResponse;
   http.send(true);
  // setTimeout("sndReq()", 1000); // Recursive JavaScript function calls sndReq() every 2 seconds
}

function handleResponse()
{
   if(http.readyState == 4)
   {
      var response = http.responseText;
      if (response != responseold || responsecheck != 1) 
	  {
          var responsecheck = 1;
          document.getElementById("palco").innerHTML = http.responseText;
          var responseold = response;
      }
   }
} 

function PopupImage(img) 
{
titulo="Partido Democratico Brasileiro";
w=open("",'image','width=600,height=420,toolbar=no,scrollbars=no,resizable=no, top=50, left=200');
w.document.write("<HTML><HEAD><TITLE>"+titulo+"</TITLE></HEAD>");
w.document.write("<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>");
w.document.write("<BODY  onblur='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Carregando...'>");
w.document.write("</TD></TR>");

w.document.write("<TR><TD ALIGN=CENTER>");
w.document.write("<FONT COLOR =#0033FF>PDT e VOC&Eacute;: Escrevendo a hist&oacute;ria do Brasil </font>");
w.document.write("</TD></TR>");
w.document.write("</TABLE>");

w.document.write("</BODY></HTML>");
w.document.close();
}

function PopupImagefm(img) 
{
titulo="Camisaria TOP EXPORT";
w=open("",'image','width=460,height=613,toolbar=no,scrollbars=no,resizable=no, top=50, left=200');
w.document.write("<HTML><HEAD><TITLE>"+titulo+"</TITLE></HEAD>");
w.document.write("<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>");
w.document.write("<BODY  onblur='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Carregando...'>");
w.document.write("</TD></TR>");

w.document.write("<TR><TD ALIGN=CENTER>");
w.document.write("<FONT COLOR =#0033FF>Lindos Modelos a Escolher </font>");
w.document.write("</TD></TR>");
w.document.write("</TABLE>");

w.document.write("</BODY></HTML>");
w.document.close();
}


