<!--
function verifyCompatibleBrowser()
{
    this.ver=navigator.appVersion
    this.dom=document.getElementById?1:0
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
    this.ie4=(document.all && !this.dom)?1:0;
    this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
    return this
}
bw=new verifyCompatibleBrowser()

function ConstructObject(obj,nest)
{
    nest=(!nest) ? '':'document.'+nest+'.'
    this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0;
    this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0;
    this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight
    this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight
    this.up=MoveAreaUp;
    this.down=MoveAreaDown;
    this.MoveArea=MoveArea; this.x; this.y;
    this.obj = obj + "Object"
    eval(this.obj + "=this")
    return this
}

function MoveArea(x,y) {
    this.x=x;this.y=y
    this.css.left=this.x
    this.css.top=this.y
}

function MoveAreaDown(move) {
	this.MoveArea(0,this.y-move)
}

function MoveAreaUp(move) {
	this.MoveArea(0,this.y-move)
}

var initialised;
function InitialiseScrollableArea()
{
	objContainer=new ConstructObject('divContainer')
    objScroller=new ConstructObject('divContent','divContainer')
    objContainer.css.visibility='visible'
    initialised=true;
}
//-->





<!--
x1On=new Image;x1On.src="danpex/danpex2_10.jpg";x1Off=new Image; x1Off.src="danpex/danpex_10.jpg";
x2On=new Image;x2On.src="danpex/danpex2_13.jpg";x2Off=new Image; x2Off.src="danpex/danpex_13.jpg";
x3On=new Image;x3On.src="danpex/danpex2_14.jpg";x3Off=new Image; x3Off.src="danpex/danpex_14.jpg";
x4On=new Image;x4On.src="danpex/danpex2_15.jpg";x4Off=new Image; x4Off.src="danpex/danpex_15.jpg";
x5On=new Image;x5On.src="danpex/danpex2_16.jpg";x5Off=new Image; x5Off.src="danpex/danpex_16.jpg";
x6On=new Image;x6On.src="danpex/danpex2_17.jpg";x6Off=new Image; x6Off.src="danpex/danpex_17.jpg";
function switchOn(imgName){imgOn = eval(imgName + "On.src");document[imgName].src=imgOn;}
function switchOff(imgName){imgOff = eval(imgName + "Off.src");document[imgName].src = imgOff;}
var popup = null;function openMe() {if (popup != null) {if (popup.opener == null) {popup.opener=self;} }}
//-->
