//<![CDATA[
<!--
function ExpandContract(ObjectID, LinkID, showClass, hideClass) {

var identity = document.getElementById(ObjectID);
var LinkElement = document.getElementById(LinkID);

if (identity.className == showClass) {
	identity.className=hideClass;
	LinkElement.innerHTML = 'Back To Top';
	}
else {
	identity.className=showClass;
	LinkElement.innerHTML = 'Read More...';
	}
}
//-->
//]]>

<!--

var str = "left=0,screenX=1,top=0,screenY=0,";

if (window.screen) {
  var ah = screen.availHeight - 30;
  var aw = screen.availWidth - 10;
  str += ",height=" + ah;
  str += ",innerHeight=" + ah;
  str += ",width=" + aw;
  str += ",innerWidth=" + aw;
} else {
  str += ",resizable"; // so the user can resize the window manually
}

function launchFull(url, name) {
  return window.open(url, name, str);
}


// -->


<!--
function checkBrowser(){
        this.ver=navigator.appVersion
        this.dom=document.getElementById?1:0
        this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
        this.ie4=(document.all && !this.dom)?1:0;
        this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
        this.ns4=(document.layers && !this.dom)?1:0;
        this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
        return this
}
bw=new checkBrowser()
//]]>


<!--
// preload
 
var arImages=new Array(); 
function Preload() { 
 var temp = Preload.arguments;  
 for(x=0; x <temp.length; x++) { 
  arImages[x]=new Image(); 
  arImages[x].src=Preload.arguments[x]; 
 } 
} 
//]]>
