function mune(p){
 var xmlHttp;
 var url='ajax/munep.php?p='+p;
 if (window.ActiveXObject) { 
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 } 
 else if (window.XMLHttpRequest) { 
  xmlHttp = new XMLHttpRequest();
 } 
 
 xmlHttp.onreadystatechange = function(){
  if(xmlHttp.readyState == 4){
    
	   document.getElementById('mune1').innerHTML = xmlHttp.responseText;
	 
  }
 }

 xmlHttp.open("GET",url,true);
 xmlHttp.send(null);
}
function mune2(p){
 var xmlHttp;
 var url='ajax/munep2.php?p='+p;
 if (window.ActiveXObject) { 
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 } 
 else if (window.XMLHttpRequest) { 
  xmlHttp = new XMLHttpRequest();
 } 
 
 xmlHttp.onreadystatechange = function(){
  if(xmlHttp.readyState == 4){
    
	   document.getElementById('mune2').innerHTML = xmlHttp.responseText;
	 
  }
 }

 xmlHttp.open("GET",url,true);
 xmlHttp.send(null);
}
function jphoto(id,ppid){
 var xmlHttp;
 var url='ajax/jphoto.php?id='+id+'&ppid='+ppid;
 if (window.ActiveXObject) { 
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 } 
 else if (window.XMLHttpRequest) { 
  xmlHttp = new XMLHttpRequest();
 } 
 
 xmlHttp.onreadystatechange = function(){
  if(xmlHttp.readyState == 4){
    
	   document.getElementById('gjphoto').innerHTML = xmlHttp.responseText;
	 
  }
 }

 xmlHttp.open("GET",url,true);
 xmlHttp.send(null);
}
function omsub3(){
document.comp.submit();
}
function pic(id,p){
 var xmlHttp;
 var url='ajax/serpic2.php?id='+id+'&p='+p;
 if (window.ActiveXObject) { 
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 } 
 else if (window.XMLHttpRequest) { 
  xmlHttp = new XMLHttpRequest();
 } 
 
 xmlHttp.onreadystatechange = function(){
  if(xmlHttp.readyState == 4){
   document.getElementById('spic').innerHTML = xmlHttp.responseText;
  }
 }

 xmlHttp.open("GET",url,true);
 xmlHttp.send(null);
}
