// JavaScript Document

function LoadPage(page,usediv,dir,url) {
		 
         try {xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");}  catch (e) { alert("Error: Could not load page.");}	 
		 
		 document.getElementById(usediv).innerHTML = '';
         
		 xmlhttp.onreadystatechange = function(){

                 if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {

                        document.getElementById(usediv).innerHTML += xmlhttp.responseText;
						document.getElementById(usediv).innerHTML += '<p><br/><a href="'+url+'#promoup" title="Intoarce-te Sus">SUS</a></p>';
						document.getElementById(usediv).style.display = 'block';												                
		 				document.location.href = url + '#promolb';						
                 }
         }
	
		 
         xmlhttp.open("GET",page+'?dir='+dir);
		 	 
         xmlhttp.send(null);		 		 	 
  
         return false;
}