function ajaxLoader(url,id) {



  if (document.getElementById) {



    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();



  }



  if (x) {



    x.onreadystatechange = function() {



      if (x.readyState == 4 && x.status == 200) {



        el = document.getElementById(id);



        el.innerHTML = x.responseText;



      }



    }



    x.open("GET", url, true);



    x.send(null);



  }



}



	function popUp(URL) {

		day = new Date();

		id = day.getTime();

		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,left = 0,top = 0');");

	}

	

	

		function popUp2(URL) {

		day = new Date();

		id = day.getTime();

		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=70,left = 0,top = 0');");

	}

	

		function popUp3(URL) {

		day = new Date();

		id = day.getTime();

		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=140,left = 0,top = 0');");

	}
