
function createRequestObject() { 
   var req; 
   if(window.XMLHttpRequest){ 
      req = new XMLHttpRequest(); 
   } else if(window.ActiveXObject) { 
      req = new ActiveXObject("Microsoft.XMLHTTP"); 
   } else { 
      alert('Problem creating the XMLHttpRequest object'); 
   } 
   return req; 

} 

function handleDivTag(divtag) 
{ 
   var divtag; 
   return divtag; 
} 


var http = createRequestObject(); 

var date = new Date();
var timestamp = date.getTime();
var divhandler = new handleDivTag(null); 

function sendRequest(url,divtag,ue) { 

divhandler.divtag = divtag; 
theurl = url;


document.getElementById(divhandler.divtag).innerHTML = "<img src='js/loading.gif'>";

if (ue){
var url=url+"&ue="+ue + "&" + timestamp;
}

  http.open('get',url,true);
  http.onreadystatechange = handleResponse;
  http.send(null); 


} 


function get(url,divtag) {
var ue = document.getElementById('ue').value;
sendRequest(url,divtag,ue);
   }

function handleResponse() { 

   if(http.readyState == 4 && http.status == 200){ 
    
      var response = http.responseText; 

      if(response) { 
        document.getElementById(divhandler.divtag).innerHTML = response;


      } 

   } 

} 

function showhide(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }


function show_more(a,l,c,v,q)
 {



var popup = document.getElementById('more');
var mdiv = "more";

popup.innerHTML = "<div style='width: 700px; min-height: 500px; position: relative; top: 10%; border: 1px solid #cccccc; background: #ffffff; margin-left: auto; margin-right: auto;'><div style='padding: 10px;'><iframe allowtransparency='true' marginheight='0' marginwidth='0' scrolling='" + q + "' frameborder='0' name='headadvert' width='650' height='480' src='http://www.candyhairdressers.com.au/" + a + ".asp?" + l + "=" + c + "&v=" + v + "'></iframe></div><div id='fbc' style='z-index: 6; width: 47px; height: 43px; position: absolute; top: -7px; left: -7px; cursor:pointer;' onclick='close_popup();'><img title='Close window' src='http://www.candyhairdressers.com.au/images/point.png'></div></div>";
     
popup.style.display = 'block';
     

 }
 

function close_popup(cpop)
 {

var mpop = "more";
     var popup = document.getElementById(mpop);

     popup.style.display = 'none';

}
 


