function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function shl(n, visStr) 
{
  var theObj;
    if (navigator.appName == 'Netscape' && document.layers != null) 
    {
      theObj = eval("document.layers[\"m"+n+"\"]");
      if (visStr == 1) visStr = 'show'; //convert vals
      if (visStr == 0) visStr = 'hide';
      if (theObj) theObj.visibility = visStr;
    } 
    else if (document.all != null) 
    { //IE
      if (visStr == 1) visStr = 'visible'; //convert vals
      if (visStr == 0) visStr = 'hidden';
      theObj = eval("document.all[\"m"+n+"\"]");
      if (theObj) theObj.style.visibility = visStr;
    }
}

function dothez()
{

 theObj = eval("document.all[\"m"+2+"\"]");
 theObj.style.zIndex = "101";

}

function IEPos()
{
	if (document.all != null) {
		var apt=document.getElementsByTagName("*");
		for (i=0; i<apt.length; i++) {
			if (apt[i].className=="d1") {
				apt[i].style.left='-50%';
			}
		}
	}
}