DynLayerSlideInit = new Function()
DynLayer.prototype.slideInit = new Function()
DynLayer.prototype.slideTo = DynLayerSlideTo
DynLayer.prototype.slideBy = DynLayerSlideBy
DynLayer.prototype.slideStart = DynLayerSlideStart
DynLayer.prototype.slide = DynLayerSlide
DynLayer.prototype.onSlide = new Function()
DynLayer.prototype.onSlideEnd = new Function()
// Clip Methods
function DynLayerClipInit(clipTop,clipRight,clipBottom,clipLeft) {
    if (is.ie) {
        if (arguments.length==4) this.clipTo(clipTop,clipRight,clipBottom,clipLeft)
        else if (is.ie4) this.clipTo(0,this.css.pixelWidth,this.css.pixelHeight,0)
    }
}
function DynLayerClipTo(t,r,b,l) {
    if (t==null) t = this.clipValues('t')
    if (r==null) r = this.clipValues('r')
    if (b==null) b = this.clipValues('b')
    if (l==null) l = this.clipValues('l')
    if (is.ns) {
        this.css.clip.top = t
        this.css.clip.right = r
        this.css.clip.bottom = b
        this.css.clip.left = l
    }
    else if (is.ie) this.css.clip = "rect("+t+"px "+r+"px "+b+"px "+l+"px)"
}
function DynLayerClipBy(t,r,b,l) {
    this.clipTo(this.clipValues('t')+t,this.clipValues('r')+r,this.clipValues('b')+b,this.clipValues('l')+l)
}
function DynLayerClipValues(which) {
    if (is.ie) var clipv = this.css.clip.split("rect(")[1].split(")")[0].split("px")
    if (which=="t") return (is.ns)? this.css.clip.top : Number(clipv[0])
    if (which=="r") return (is.ns)? this.css.clip.right : Number(clipv[1])
    if (which=="b") return (is.ns)? this.css.clip.bottom : Number(clipv[2])
    if (which=="l") return (is.ns)? this.css.clip.left : Number(clipv[3])
}
DynLayer.prototype.clipInit = DynLayerClipInit
DynLayer.prototype.clipTo = DynLayerClipTo
DynLayer.prototype.clipBy = DynLayerClipBy
DynLayer.prototype.clipValues = DynLayerClipValues
// Write Methodfunction DynLayerWrite(html) {    if (is.ns) {        this.doc.open()        this.doc.write(html)        this.doc.close()    }    else if (is.ie) {        this.event.innerHTML = html    }}DynLayer.prototype.write = DynLayerWrite// BrowserCheck Objectfunction BrowserCheck() {    var b = navigator.appName    if (b=="Netscape") this.b = "ns"    else if (b=="Microsoft Internet Explorer") this.b = "ie"    else this.b = b    this.version = navigator.appVersion    this.v = parseInt(this.version)    this.ns = (this.b=="ns" && this.v>=4)    this.ns4 = (this.b=="ns" && this.v==4)    this.ns5 = (this.b=="ns" && this.v==5)    this.ie = (this.b=="ie" && this.v>=4)    this.ie4 = (this.version.indexOf('MSIE 4')>0)    this.ie5 = (this.version.indexOf('MSIE 5')>0)    this.min = (this.ns||this.ie)}is = new BrowserCheck()// CSS Functionfunction css(id,left,top,width,height,color,vis,z,other) {    if (id=="START") return '<STYLE TYPE="text/css">\n'    else if (id=="END") return '</STYLE>'    var str = (left!=null && top!=null)? '#'+id+' {position:absolute; left:'+left+'px; top:'+top+'px;' : '#'+id+' {position:relative;'    if (arguments.length>=4 && width!=null) str += ' width:'+width+'px;'    if (arguments.length>=5 && height!=null) {        str += ' height:'+height+'px;'        if (arguments.length<9 || other.indexOf('clip')==-1) str += ' clip:rect(0px '+width+'px '+height+'px 0px);'    }    if (arguments.length>=6 && color!=null) str += (is.ns)? ' layer-background-color:'+color+';' : ' background-color:'+color+';'    if (arguments.length>=7 && vis!=null) str += ' visibility:'+vis+';'    if (arguments.length>=8 && z!=null) str += ' z-index:'+z+';'    if (arguments.length==9 && other!=null) str += ' '+other    str += '}\n'    return str}function writeCSS(str,showAlert) {    str = css('START')+str+css('END')    document.write(str)    if (showAlert) alert(str)}</script><script language=JavaScript1.2>
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  
}
function pop1(pageurl) {
  var popwin=window.open(pageurl,"popWin","scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=540,height=370");
  return false;
  }//-->
</script>