		var win = null;
		function NewWindow(mypage,myname,w,h,scroll){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
		win = window.open(mypage,myname,settings)
		if(win.window.focus){win.window.focus();}
		}

		function MM_openBrWindow(theURL,winName,features) { //v1.2
		window.open(theURL,winName,features);
		}

		function fadeOut(obj) {
			obj.style.filter="blendTrans(duration=0.5)";
			// Make sure filter is not playing.
			if ((obj.backgroundColor != "#6D788C")) {
				obj.filters.blendTrans.Apply();
				obj.style.backgroundColor="#EA4499";
				obj.style.cursor="hand"
				obj.filters.blendTrans.Play();
			}
		}
		function fadeIn(obj) {
			obj.style.filter="blendTrans(duration=0.5)";
			// Make sure filter is not playing.
			if ((obj.bacgroundColor != "#EA4499")) {
			obj.filters.blendTrans.Apply();
			obj.style.backgroundColor="#6D788C";
			obj.filters.blendTrans.Play();
			}
		}