function ShowObj(objMID) {
	document.getElementById(objMID).style.display='';
}
function HideObj(objMID) {
	document.getElementById(objMID).style.display='none';
	}

function showReadMore(condition){ 
	if(condition == true){
		ShowObj("ReadMore");
		HideObj("ReadMoreClick");
		}
	else
		HideObj("ReadMore");
		
}

function windowOpen(aWindow,width,height,aPage,scroll) {
   		myWindow = window.open("",aWindow,"scrollbars=" + scroll + ",width=" + width + ",height=" + height+",top=0,left=0,screenX=0,screenY=0");
   		myWindow.location.href = aPage;
   		if (!myWindow.opener) myWindow.opener = self;
	}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

//This function is used in  /retirement/include/how_work_content
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}