// JavaScript Document 

  
   //Bloco que pega as variáveis da querystring
   qs=new Array()
   variaveis=location.search.replace(/\x3F/,"").replace(/\x2B/g," ").split("&")
	if(variaveis!=""){
		for(i=0;i<variaveis.length;i++){
			nvar=variaveis[i].split("=")
			qs[nvar[0]]=unescape(nvar[1])
		}
	}
	//id=QueryString("id");  
    
   function QueryString(variavel){
    return qs[variavel]
   }
   function onBodyLoad() {      
	   document.onkeydown = onKeyDown; 
	  
   } 
   function onKeyDown() {	 
	   
	 if(window.event.keyCode == 123) {  
	  
            id = QueryString("id");
            if (id==undefined) id=1;
	    top.location.href="http://www.magaweb.com.br/netpubli/index_edit.php?pasta="+pasta+"&site="+site+"&id="+id;	   
	 } 
   } 
   function newWindowTest(foto, newWindow) {
	  var message1 = "<center><img src="+foto+" ><a href=javascript:window.close();>[Fechar]</a></center>"
	  newWindow.document.open("text/html", "Foto")
	  newWindow.document.writeln(message1)
	  newWindow.document.close()
	}
	
   function zoom(foto, w, h) {
	  w = w + 35;
	  h = h + 75;	  
	  var newWindow =  window.open('','Foto','scrollbars=yes');
	  newWindow.resizeTo(w,h);
	  newWindowTest(foto, newWindow);
	  newWindow.focus();
   }
