<!--
	function getStyleObject(objectId, doc) {
	     if(document.getElementById && document.getElementById(objectId)) {
	 	return document.getElementById(objectId).style;
	     } else if (document.all && document.all(objectId)) {
	 	return document.all(objectId).style;
	     } else if (document.layers && document.layers[objectId]) {
	 		return getObjNN4(document,objectId);
	     } else {
	 	return false;
	     }
	 }

	function getObject(objectId, doc) {
	     if(document.getElementById && document.getElementById(objectId)) {
	 	return document.getElementById(objectId);
	     } else if (document.all && document.all(objectId)) {
	 	return document.all(objectId);
	     } else if (document.layers && document.layers[objectId]) {
	 		return getObjNN4(document,objectId);
	     } else {
	 	return false;
	     }
	}

	function doTheClock() {
	   window.setTimeout( "doTheClock()", 1000 );
	   var arrD = new Array();
				arrD[0]="Sunday";
				arrD[1]="Monday";
				arrD[2]="Tuesday";
				arrD[3]="Wednesday";
				arrD[4]="Thursday";
				arrD[5]="Friday";
				arrD[6]="Saturday";

			var arrM = new Array();
				arrM[0]="January";
				arrM[1]="February";
				arrM[2]="March";
				arrM[3]="April";
				arrM[4]="May";
				arrM[5]="June";
				arrM[6]="July";
				arrM[7]="August";
				arrM[8]="September";
				arrM[9]="October";
				arrM[10]="November";
				arrM[11]="December";

	   var t = new Date();

	   dd = arrD[t.getDay()];
	   dt = t.getDate();
	   mm = arrM[t.getMonth()];
	   yy = t.getFullYear();
	   h = t.getHours()
	   m = t.getMinutes()
	   ss = t.getSeconds()

	   if(m<10)m="0"+m;
	   if(ss<10)ss="0"+ss;

	   s = dt+" "+mm+" "+yy+" "+h+":"+m+":"+ss;
	   if(document.all){
		  document.all.sClock.innerText = s;
	   }else{
		  self.status = dt.toString();
	   }
	}



	function adjWidth(){
		var w;
		o1 = getStyleObject('logo');
		o2 = getStyleObject('content');
		o3 = getStyleObject('footer');
		o4 = getStyleObject('infobar');
		w = (window.screen.width<=960)?"775px":"995px";
		o1.width=w;
		o2.width=w;
		o3.width=w;
		o4.width=w;


		if(window.screen.width<=960){
				if(getObject('spacerCol23')){
					getObject('spacerCol23').style.width="575px";
				}
				else if(getObject('spacerCol2')){
					getObject('spacerCol2').style.width="352px";
				}
			}
		else{
				if(getObject('spacerCol23')){
					getObject('spacerCol23').style.width="814px";
				}
				else if(getObject('spacerCol2')){
					getObject('spacerCol2').style.width="592px";
				}
		}
	}

	function showUses(u){
		window.location.href="/content/products/sage/online/ol50uses.asp?u="+u;
	}
//-->
