<!--

CURRENT_FLASH_VERSION = 6;
var YES = 2;

var flashinstalled = 0;
var flashversion = 0;
var preloadFlag = false;
var browserName = navigator.appName;
var agent = navigator.userAgent;
var isIE = ( agent.indexOf("MSIE") > -1 ) ? true : false;
var isNetscape = ( agent.indexOf("Netscape") > -1 ) ? true : false;
var isOtherBrowser = ( isIE || isNetscape ) ? false : true;
var RndNum = 1;
var fName = "";
var rosterID = 0;
var http = false;
var viewWidth = window.innerWidth;
var viewHeight = window.innerHeight;
vbDetect = "false";

function createHttpReq()
{	try {	req = new XMLHttpRequest();	}
	catch(err1)
	{	try	{	req = new ActiveXObject("Msxml2.XMLHTTP");	}
		catch(err2)
		{	try	{	req = new ActiveXObject("Microsoft.XMLHTTP");	}
			catch(err3)	{	req = false;	}
		}
	}
	return req;
}

var http = createHttpReq();

function requestGET(url, objID)
{	var obj = document.getElementById(objID);
	var urlcall = url+'&rand='+new Date().getTime();
	http.open("GET", urlcall, true);
	http.onreadystatechange = function()
	{	if (http.readyState == 4 && http.status == 200)
		{	obj.innerHTML = http.responseText;	}
	}	
	http.send(null);
}

if (navigator.plugins && navigator.plugins.length)
{	x = navigator.plugins["Shockwave Flash"];
	if (x)
	{	flashinstalled = 2;
		if (x.description)
		{	y = x.description;
			flashversion = y.charAt(y.indexOf('.')-1);
		}
	} else
		flashinstalled = 1;
	if (navigator.plugins["Shockwave Flash 2.0"])
	{	flashinstalled = 2;
		flashversion = 2;
	}
}
else if (navigator.mimeTypes && navigator.mimeTypes.length)
{	x = navigator.mimeTypes['application/x-shockwave-flash'];
	if (x && x.enabledPlugin)
		flashinstalled = 2;
	else
		flashinstalled = 1;
}
else
	vbDetect = "true";
// -->

function loadAnimation()
{	if (flashinstalled == YES && flashversion >= 4)
	{	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="688" height="200">');
		document.write('			  <param name="movie" value="http://www.watchmedad.com/graphics/home/admin_55n.swf" />');
		document.write('<param name="quality" value="high" />');
		document.write('<param name="WMode" value="Transparent" />');
		document.write('<embed src="http://www.watchmedad.com/graphics/home/admin_55n.swf" quality="high" pluginspage="https://secure.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="688" height="200"></embed>');
		document.write('</object>');
	}
	else
	{	document.write('<a href="file:///C:/Documents and Settings/jshowell70/My Documents/My Webs/products/system_admin.asp"><img src="graphics/file:///C:/Documents and Settings/jshowell70/My Documents/My Webs/graphics/home/admin55_alt.jpg" width="688" height="200" border="0" alt="InstallShield Enterprise Solutions" /></a>'			);	
	}
}

function SelectThis()
{	if (document.Global.Site.options[document.Global.Site.selectedIndex].value != "none")
	{	location = document.Global.Site.options[document.Global.Site.selectedIndex].value }        
}

var usragent=navigator.userAgent.toLowerCase();
var is_mac  = (usragent.indexOf("mac") != -1);
var is_win  = (usragent.indexOf("win") != -1);
var is_ie   = (usragent.indexOf("msie") != -1); 
var is_nav  = ((usragent.indexOf('mozilla')!=-1) && (usragent.indexOf('spoofer')==-1) 
            && (usragent.indexOf('compatible') == -1) && (usragent.indexOf('opera')==-1) 
            && (usragent.indexOf('webtv')==-1));
var PrintWindow;

function Rollover(theImage, theSrc)
{	var objStr,obj;
	if(document.images)
	{	if (typeof(theImage) == 'string') 
		{	objStr = 'document.' + theImage;
			obj = eval(objStr);
			obj.src = theSrc;
		}
		else if ((typeof(theImage) == 'object') && theImage && theImage.src) 
		{	theImage.src = theSrc;	}
	}
}

function popUpWin(url, newTool, newLocation, newStatus, newMenubar, newResizable, newScrollbars, newWidth, newHeight, newLeft, newTop) 
{	if (is_ie ||  is_nav) 
	{	if (PrintWindow != null && !PrintWindow.closed) 
		{	oldWin = PrintWindow;
            oldWin.name = "oldWin";
            oldWin.close();
		}
	}
	PrintWindow=window.open(url,"newWin","toolbar=" + newTool + ",location=" + newLocation + ",status=" + newStatus + ",menubar=" + newMenubar + ",resizable=" + newResizable + ",scrollbars=" + newScrollbars + ",width=" + newWidth + ",height=" + newHeight + ",left=" + newLeft + ",top=" + newTop);
	if (PrintWindow.opener == null)	{  	PrintWindow.opener = popupWin;	}
	PrintWindow.opener.name = "origWin";
    PrintWindow.focus();
}

function SelectDrill(Drill)
{	if (document.Drill.Site.options[document.Drill.Site.selectedIndex].value != "none")
	{	location = document.Drill.Site.options[document.Drill.Site.selectedIndex].value	}        
}

function SelectGlobal(Global)
{	if (document.Global.Site.options[document.Global.Site.selectedIndex].value != "none")
	{	location = document.Global.Site.options[document.Global.Site.selectedIndex].value	}        
}

function closeWin()
{	this.close();
	PrintWindow = null;
}

function launch(newURL, newName, newFeatures, orgName) 
{	var remote = open(newURL, newName, newFeatures);
	if (remote.opener == null)
    remote.opener = window;
	remote.opener.name = orgName;
	return remote;
}

function toggleDisplay(elementName)
{	var div = document.getElementById(elementName).style;
	var img = document.getElementById("imgShowHide")
	if (div.display == "none")
	{	div.display = "inline";
		img.src = "/graphics/btn_toggle_minus.gif";
		img.alt = "hide";
	} else
	{	div.display = "none";
		img.src = "/graphics/btn_toggle.gif";
		img.alt = "show";
	}
}

function submitInternalFeedback(frm)
{	if (frm.txtInternalFeedback.value == "")
	{	alert("Please enter a description of the changes to be made to this page.");
		frm.txtInternalFeedback.focus();
		return false;
	}
	else if (frm.txtUser.value == "")
	{	alert("Please enter your name.");
		frm.txtUser.focus();
		return false;
	}
	else
	{	w = window.open("about:blank","intFeedback","toolbar=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=700,height=400,left=200,top=120");
		w.focus();
		return true;
	}
}

var isDOM = document.getElementById?1:0;
var isIE  = document.all?1:0;
var isNS4 = navigator.appName=='Netscape'&&!isDOM?1:0;

function showMenu()
{	if (isDOM)
		document.getElementById(this.name).style.visibility = "visible";
	else if (isIE)
		document.all[this.name].style.visibility = "visible";
	this.isVisible = true;
	if (this.highlightElement != null)
		setHighlight(this.highlightElement, true);
}

function hideMenu()
{
	if (isDOM)
		document.getElementById(this.name).style.visibility = "hidden";
	else if (isIE)
		document.all[this.name].style.visibility = "hidden";
	this.isVisible = false;
	if (this.highlightElement != null)
		setHighlight(this.highlightElement, false);
}

function setMouseOver()
{	this.isMouseOver = true;
	var p = this.parent;
	while (p != null)
	{	clearTimeout(p.timer);
		p = p.parent;
	}
	clearTimeout(this.timer);
	this.timer = setTimeout("setMenuState(" + this.name + ");", delayTime);
	//this.show();
}

function setMouseOut()
{	this.isMouseOver = false;
	clearTimeout(this.timer);
	this.timer = setTimeout("setMenuState(" + this.name + ");", delayTime);
	//this.hide();
	var p = this.parent;
	while (p != null)
	{	if ((!p.isMouseOver) && (p.isVisible))
		{	clearTimeout(p.timer);
			p.timer = setTimeout("setMenuState(" + p.name + ");", delayTime);
		}
		p = p.parent;
	}
}

function setMenuState(menu)
{	if (!isNS4)
	{	if ((menu.isMouseOver) && (!menu.isVisible))
			menu.show();
		else if ((!menu.isMouseOver) && (menu.isVisible))
			menu.hide();
	}
}

function popMenu(menuName, highlight, subMenuArray)
{	this.show = showMenu;
	this.hide = hideMenu;
	this.mouseOver = setMouseOver;
	this.mouseOut = setMouseOut;
	this.name = menuName;
	this.highlightElement = highlight;
	this.parent = null;
	this.isSubMenu = false;
	this.hasChildren = false;
	this.isVisible = false;
	this.isMouseOver = false;
	this.timer = 0;
	if (subMenuArray != null)
	{	this.hasChildren = true;
		this.children = subMenuArray;
		for (i = 0; i < subMenuArray.length; i++)
		{	subMenuArray[i].isSubMenu = true;
			subMenuArray[i].parent = this;
		}
	}
}

function setHoverState(menu, isOver)
{	if (!isNS4)
	{	if (isOver)
			menu.mouseOver();
		else
			menu.mouseOut();
	}
}

function setHighlight(item, isOver)
{	var bgColor = "#eaecf1";
	if (isOver)
		bgColor = "#BEC6CE";
	if (isDOM)
		document.getElementById(item).style.background = bgColor;
	else if (isIE)
		document.all[item].style.background = bgColor;
}

function highlightCell(td, isHover)
{	if (isHover)
		td.className = "menuhover";
	else
		td.className = "menu";
}

if (!isNS4)
{	//var subProducts = new popMenu("subProducts", null, null);
	//var subConsulting = new popMenu("subConsulting", null, null);
	//var subTraining = new popMenu("subTraining", null, null);
	var subSupportCentral = new popMenu("subSupportCentral", "tdSupportCentral", null);
	var subSupportMenus = new Array(subSupportCentral);
	var subSupport = new popMenu("subSupport", null, null);
	//var subCompany = new popMenu("subCompany", null, null);
	var subCategorys = new popMenu("subCategorys", null, null);
	var delayTime = 250;
}

function KW_cal_class(m,d,y,d1,d2,mn,c) { //v1.3.0
	this.o="";this.dsp="";this.m=m;this.d=d;this.y=y;this.d1=d1;this.d2=d2;
	this.mn=mn,this.sy=((y%100)<10)?"0"+(y%100):(y%100);this.mm=(m<10)?"0"+m:m;this.c=c
	this.dd=(d<10)?"0"+d:d;	iD=new Date(y,(m-1),d);eD=new Date();eD.setMilliseconds(0)
	eD.setHours(0);eD.setMinutes(0);eD.setSeconds(0);this.ofs=parseInt((eD-iD)/86400000)
	this.gC=function(){iD=new Date(this.y,(this.m-1),this.d);sD=this.dsp.toString()
	retVal="on";if (sD.indexOf("<a")!=0)retVal="off";if (iD.getDay()==0||iD.getDay()==6)
	if (sD.indexOf("<a")!=0)retVal="wkendoff";else retVal="wkendon";if (this.c==0)
	if (sD.indexOf("<a")!=0)retVal="ntmoff";else retVal="ntmon";if (this.ofs==0) 
	retVal="today";	if (this.spc()==true)retVal="special";return "kw_cal_"+retVal;}
	this.spc=function(){var retVal=false;dc=document;if (dc.kw_sp){ for (var i=0;i<dc.kw_sp.length;i++){
	if (this.m==dc.kw_sp[i].m&&(this.y==dc.kw_sp[i].y||dc.kw_sp[i].y=="*")&&this.d==dc.kw_sp[i].d)
	retVal=true;}} return retVal;}
}

function KW_sTD(f,n,d,o,a1,a2,a3,a4,w,l,sd){ //v1.4.0
	var rV="<a href=\"javascript:window.opener.KW_setCalendar('"+f+"',"+n+",'"+l+"'); window.close();\">"+d+"</a>";
	if ((a1==1&&o>0)||(a1==-1&&o<1)||(a1==2&&o>=0)) rV=d;if (a2>0) {if (o<=-a2) rV=d;} 
	else if (a2<0) {if (o>=-a2) rV=d;}if (a3!=-1) {ss=a3.split("|");if (ss[w]==1) rV=d} 
	if (a4>0) {if (o>=-a4 && o<0) rV=d;} if (a4<0) {if (o<=-a4 && o>0) rV=d; } if (sd) {
	rV=d} return rV;
}

function KW_date_class(m,d,y) {this.m=m;this.d=d;this.y=y;}

function KW_setSpecial(){ //v1.4.0
	a=KW_setSpecial.arguments;dc=document;dc.kw_sp = new Array();for(var i=0;i<a.length;i=i+3)
	dc.kw_sp[dc.kw_sp.length] = new KW_date_class(a[i],a[i+1],a[i+2])
}

function KW_setCalendar(obj,n,l) {  //v3.0.1
    if (obj!=''){dc=document;dO=dc.tMh[n];if (obj.indexOf("|")==-1){MM_findObj(obj).value=dO.o; 
    dc.KW_calYear=dO.y;}else{oS=obj.split("|");tV=new Array(dO.m,dO.d,dO.y);for(var i=0;i<3;i++){ 
    tO=MM_findObj(oS[i]);dc.KW_calYear=dO.y;if(tO.type.indexOf("select")==-1)tO.value=tV[i]; 
    else for (var j=0;j<tO.options.length;j++) if (tO.options[j].value==tV[i]) tO.selectedIndex=j;
    }}dc.KW_calMonth=dO.m-1;}if (l!=''){o=MM_findObj(l); v="hide";if (o.style){o=o.style; v='hidden'
    }o.visibility=v}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function KW_setDel(val) { //v1.3.1
	return (val.match(/\.gif$|\.png$|\.jpg$|\.jpeg$/i))?"<img src=\""+val+"\" class=\"kw_img\">":val
}

function KW_mX(et) { //v3.0.0
	dc=document;if (et.pageX) return et.pageX; else if (et.clientX)
	return et.clientX + (dc.documentElement.scrollLeft ? dc.documentElement.scrollLeft : dc.body.scrollLeft); else
	return null;
}

function KW_mY(et) { //v3.0.0
	dc=document;if (et.pageY) return et.pageY; else if (et.clientY)
	return et.clientY + (dc.documentElement.scrollTop ? dc.documentElement.scrollTop : dc.body.scrollTop); else
	return null;
}

function KW_fD(n,a,b,c) {dc=document; //v3.0.0
	return eval("dc.tMh["+n+"]."+a)+dc.tMh[n].d1+eval("dc.tMh["+n+"]."+b)+dc.tMh[n].d2+eval("dc.tMh["+n+"]."+c)
}

function KW_dD(n,a,b,c,d,e,f,g,h,i,j) { //v3.0.0
	dc=document; return (a==1)?"&nbsp;":KW_sTD(b,n,i,dc.tMh[n].ofs,c,d,e,f,j,g,(dc.tMh[n].spc()&&h==1));
}

function KW_expertCalendar(){ //v3.0.0
	var dc=document,a=KW_expertCalendar.arguments,d=new Date(); btm=d.getMonth();bty=d.getFullYear()
	d.setDate(1); if (a[29]!=-1) d.setMonth(a[29]); else if (dc.KW_calMonth) d.setMonth(dc.KW_calMonth); 
	cMn=d.getMonth(); pMt=((cMn-1)<0)?11:cMn-1; nMh=((cMn+1)>11)?0:cMn+1; if (a[30]!=-1)
	d.setFullYear(a[30]); else if (dc.KW_calYear) d.setYear(dc.KW_calYear); cYr=d.getFullYear(); 
	pYr=(pMt==11)?cYr-1:cYr; nYr=(nMh==0)?cYr+1:cYr; wdy=d.getDay(); dc.tMh=new Array(); if (a[25]==1)
	wdy=((--wdy)<0)?6:wdy; tpM=new Date(d.getFullYear(),d.getMonth(),d.getDate()-wdy); 
	for (var i=0;i<wdy;i++) { n=dc.tMh.length; 
	dc.tMh[n]= new KW_cal_class((tpM.getMonth()+1),tpM.getDate(),tpM.getFullYear(),a[21],a[23],a[tpM.getMonth()],0); 
	dc.tMh[n].o=KW_fD(n,a[20],a[22],a[24]);
	dc.tMh[n].dsp=KW_dD(n,a[31],a[19],a[26],a[27],a[28],a[42],a[41],a[45],tpM.getDate(),tpM.getDay());
	tpM.setDate(tpM.getDate()+1)} EOM=false; for (var i=1;!EOM;i++) { n=dc.tMh.length; 
	dc.tMh[n]=new KW_cal_class((d.getMonth()+1),d.getDate(),d.getFullYear(),a[21],a[23],a[d.getMonth()],1); 
	dc.tMh[n].o=KW_fD(n,a[20],a[22],a[24]);
	dc.tMh[n].dsp=KW_dD(n,0,a[19],a[26],a[27],a[28],a[42],a[41],a[45],d.getDate(),d.getDay());
	d.setDate(d.getDate()+1); if (d.getDate()==1) EOM=true;} wdy=d.getDay(); if (a[25]==1)
	wdy=((--wdy)<0)?6:wdy; for (var i=wdy;i<7;i++) { n=dc.tMh.length; 
	dc.tMh[n]= new KW_cal_class((d.getMonth()+1),d.getDate(),d.getFullYear(),a[21],a[23],a[d.getMonth()],0); 
	dc.tMh[n].o=KW_fD(n,a[20],a[22],a[24]);
	dc.tMh[n].dsp=KW_dD(n,a[31],a[19],a[26],a[27],a[28],a[42],a[41],a[45],d.getDate(),d.getDay());
	d.setDate(d.getDate()+1);}ns4 =(dc.layers)?true:false; px=(ns4||window.opera)?'':'px'; s=a[32]; if (a[33]==-1) { 
	ww=window; var wp=(ww.innerWidth!= null)?ww.innerWidth:(dc.body.clientWidth!=null)?dc.body.clientWidth:null;
	oLoc=a[41];if (oLoc=="") oLoc=a[32].name;oO=dc.getElementById(oLoc); if (oO.offsetWidth) oW=oO.offsetWidth; 
	else if (oO.clip.width) oW=oO.clip.width; winY=KW_mY(a[46])+20;winX=KW_mX(a[46])-(oW/4); 
	if (winX<2) winX=2; else if (winX+oW>wp) winX-=oW/2;if (a[41]==""){
	posx=(ww.screenX)?ww.screenX:ww.screenLeft; posy=(ww.screenY)?ww.screenY:ww.screenTop
	cma=(a[41]=='')?((ww.outerHeight)?(ww.outerHeight-ww.innerHeight)-30:0):0; var scrlx,scrly; 
	if (self.pageYOffset) { scrlx = self.pageXOffset; scrly = self.pageYOffset;} else 
	if (dc.documentElement && dc.documentElement.scrollTop){ scrlx = dc.documentElement.scrollLeft; 
	scrly = dc.documentElement.scrollTop;} else if (dc.body){ scrlx = dc.body.scrollLeft; scrly = dc.body.scrollTop;}
	winX+=posx-scrlx;winY+=posy+cma-scrly;}xp=winX; yp=winY; a[33]=xp; a[34]=yp;}
	str="<html><head><title>"+a[cMn]+" "+cYr; accs="<a class=\"kw_cal_a\" "; 
	str+="</title></head><link href=\""+a[43]+"\" rel=\"stylesheet\" type=\"text/css\" />"
	str+="<body style=\"margin:0; background-color:"+a[44]+";\">"; if (a[41]!='' && !ns4)
	str=""; str+="<table class=\"kw_cal_tbl2\"><tr><td colspan=\"7\">"
	str+="<table width=\""+(a[35]-10)+"\" border=0 cellspacing=0 cellpadding=0 class=\"kw_cal_tbl2\">"; 
	endStr="','"+a[31]+"',0"; for(ix=33;ix<37;ix++) endStr+=","+a[ix]; for(ix=37;ix<46;ix++)
	endStr+=",'"+a[ix]+"'"; bStr=""; for (var j=0;j<29;j++) bStr+="'"+a[j]+"',"; 
	xDD="<select id=\"EC_monthDD\" name='EC_monthDD' class=\"EC_dateDD\"" ;xDD+="on"
	xDD+="Change=";	xDD+='"KW_expertCalendar('+bStr; xDD+="MM_findObj('EC_monthDD').options["
	xDD+="MM_findObj('EC_monthDD').selectedIndex].value,'"; xDD+=cYr; xDD+=endStr; xDD+=')">'; 
	for (var j=0;j<12;j++) xDD+="<option value=\""+j+"\""+((j==cMn)?" selected":"")+">"+a[j]+"</option>"; 
	xDD+="</select>"; if (a[41]=="" || ns4) xDD=a[cMn]; 
	aStr1=bStr+"'"+pMt+"','"+pYr+endStr; aStr2=bStr+"'"+nMh+"','"+nYr+endStr; str+="<tr><td "
	str+="class=\"kw_cal_mnth\">"+accs+"href=\"javascript:window.opener.KW_expertCalendar("+aStr1; 
	str+=")\">"+KW_setDel(a[37])+"</a>"+xDD+accs+"href=\"javascript:window.opener.KW_expertCalendar("
	str+=aStr2+")\">"+KW_setDel(a[38])+"</a></td>"; aStr1=bStr+"'"+cMn+"','"+(cYr-1)+endStr; 
	aStr2=bStr+"'"+cMn+"','"+(cYr+1)+endStr; 
	yDD="<select id=\"EC_yearDD\" name='EC_yearDD' class=\"EC_dateDD\" onChange=\""
	yDD+="KW_expertCalendar("+bStr+"'"+cMn+"',MM_findObj('EC_yearDD').options["
	yDD+="MM_findObj('EC_yearDD').selectedIndex].value"+endStr.substring(1)+")\">"; 
	yDDa=new Array(10,5,4,3,2,1,0,-1,-2,-3,-4,-5,-10);for (var j=0;j<yDDa.length;j++)
	yDD+="<option value=\""+(cYr-yDDa[j])+"\""+((yDDa[j]==0)?" selected":"")+">"+(cYr-yDDa[j])+"</option>"; 
	yDD+="</select>"; if (a[41]=="" || ns4) yDD=cYr; str+="<td class=\"kw_cal_yr\">"+accs
	str+="href=\"javascript:window.opener.KW_expertCalendar("+aStr1+")\">"+KW_setDel(a[39])+"</a>"
	str+=yDD+accs+"href=\"javascript:window.opener.KW_expertCalendar("+aStr2+")\">"
	str+=KW_setDel(a[40])+"</a></td></tr></table></td></tr><tr>"; for (var i=(a[25]==1)?13:12;i<19;i++)
	str+="<td class=\"kw_cal_wktitle\">"+a[i]+"</td>"; if (a[25]==1)
	str+="<td class=\"kw_cal_wktitle\">"+a[12]+"</td>";str+="</tr>"; for (var i=0;i<dc.tMh.length;i++) 
	{ if ((i)/7==parseInt((i)/7)) str+="<tr>"; tdClass=dc.tMh[i].gC(); temp=dc.tMh[i].dsp.toString(); 
	tdActive=(temp.indexOf("<a")!=-1)?"id='kwon'":"";
	str+="<td class=\""+tdClass+"\" "+tdActive+">"+dc.tMh[i].dsp+"</td>"; if ((i+1)/7==parseInt((i+1)/7))
	str+="</tr>";} aStr1=bStr+"'"+btm+"','"+bty+endStr; 
	aStr2=(a[41]=="")?"window.close()":"KW_setCalendar('',7,'"+a[41]+"')"; 
	str+="<tr><td colspan=4><a href=\"javascript:window.opener.KW_expertCalendar("+aStr1+")\" class=\"kw_cal_a\">"+a[btm]
	str+=" "+bty+"</a></td><td colspan=3><a href=\"javascript:"+aStr2+"\" class=\"kw_cal_a\">Close</a></td></tr>"; 
	str+=(a[41]==''&&!ns4)?"</table></body></html>":"</table>"; if (a[41]!='' && !ns4) 
	{ t=MM_findObj(a[41]); v="show"; if (t.style) { t=t.style; v='visible'}
	t.visibility=v; t.left=xp+px; t.top=yp+px; while (str.indexOf('window.opener.')!=-1)
	str=str.replace('window.opener.',''); p1=str.indexOf(" window.close();"); while (p1!=-1) { 
	str=str.substring(0,p1)+str.substring(p1+16); p1=str.indexOf(" window.close();")}
	MM_findObj(a[41]).innerHTML=str;} else { var nnx=(ns4)?1.25:1; var look='width='+(a[35]*nnx)
	look+=',height='+(a[36]*nnx)+',left='+a[33]+',top='+a[34]; popwin=window.open('','calendar',look); 
	with(popwin.document){ open();write(str);close();}} 
}

// -->
