/**4digit include.jsv1.12006/08/24*///FUNCTION initRollOversfunction initRollOvers(){	if(!document.getElementById) return		var aPreLoad = new Array();	var sTempSrc;	var aImages = document.getElementsByTagName('img');	for (var i = 0; i < aImages.length; i++){		if(aImages[i].className.indexOf('ahover') != -1){			var src = aImages[i].getAttribute('src');			var isov = src.substring(0,src.lastIndexOf('.'));						if( isov.substring(isov.length-3, isov.length) != "_ov" && isov.substring(isov.length-4, isov.length) != "_off"){				var ftype = src.substring(src.lastIndexOf('.'), src.length);				var hsrc = src.replace(ftype, '_ov'+ftype);					aImages[i].setAttribute('hsrc', hsrc);				aPreLoad[i] = new Image();				aPreLoad[i].src = hsrc;								aImages[i].onmouseover = function(){					sTempSrc = this.getAttribute('src');					this.setAttribute('src', this.getAttribute('hsrc'));				}				aImages[i].onmouseout = function(){					if(!sTempSrc) sTempSrc = this.getAttribute('src').replace('_ov'+ftype, ftype);					this.setAttribute('src', sTempSrc);				}			}		}			}}//FUNCTION enableFlash (for IE6.5+ on winXP SP2 KB912945)function enableFlash(){	if(navigator.appName=="Microsoft Internet Explorer" && navigator.appVersion.toLowerCase().indexOf('win') != -1){		var all = document.all;		var lst = new Array();		var len = all.length;		for(var i = 0; i < len; i++) {			var obj = all[i];			if(obj && obj.nodeName) {				switch(obj.nodeName.toLowerCase()) {					case "object":					case "applet":					case "embed":						lst[lst.length] = obj;						break;					default:				}			}		}		for(var i = 0; i < lst.length; i++) {			lst[i].outerHTML += "";		}		lst = null;	}}//FUNCTION commonPop//pFile = popup File//pWidth = popup Width [optional]//pHeight = popup Height [optional]//pStatus = popup Features[optional]function commonPop(pFile, pWidth, pHeight,pStatus){	//var fName = pFile.substring(pFile.lastIndexOf('/')+1, pFile.length);	var wName = "";	if(pWidth == null){ pWidth = 700}	if(pHeight == null){ pHeight = 600}	if(pStatus == null){ pStatus = 'yes';}	if(pWidth > screen.availWidth){		pWidth = screen.availWidth;		pStatus = 'yes';	}	if(pHeight > screen.availHeight-50){		pHeight = screen.availHeight-50;		pStatus = 'yes';	}	var wFeatures= 'menubar=no,scrollbars='+pStatus+',resizable='+pStatus+',width='+pWidth+',height='+pHeight;	void(window.open(pFile, wName, wFeatures));}function setFlashHeight(h,w){	var browserName = navigator.appName;	if (browserName=="Microsoft Internet Explorer" && navigator.appVersion.indexOf('Win') != -1){		document.getElementById("naviobj").height = h;		document.getElementById("naviobj").width = w;	}else{		var headerflashobj01 = document.getElementById("naviobj");		headerflashobj01.height = h;		headerflashobj01.width = w;				var headerflashemb01 = document.getElementById("naviemb");		headerflashemb01.height = h;		headerflashemb01.width = w;			}}function Mie5Check(){	var Mie5Flag = false;	var agentValue = navigator.userAgent;	if(agentValue.indexOf("Mac")!=-1 && agentValue.indexOf("IE")!=-1){		Mie5Flag = true;	}	return Mie5Flag;}function winopen(){	growWin=window.open("dene/dene.html","name","toolbar=0,location=0,status=0,menubar=0,scrollbar=0,resizable=1,width=30,height=30");	for(curWidth=34,curHeight=34;curHeight<460;curWidth+=3,curHeight+=2){		growWin.resizeTo(curWidth,curHeight);	}	growWin.resizeTo(650,460);}//call on init functionsinitRollOvers();enableFlash();