function SymError()
{
  return true;
}

window.onerror = SymError;

/*****************************************************
* ypSlideOutMenu
* 3/04/2001
*
* a nice little script to create exclusive, slide-out
* menus for ns4, ns6, mozilla, opera, ie4, ie5 on 
* mac and win32. I've got no linux or unix to test on but 
* it should(?) work... 
*
* Revised:
* - 08/29/2002 : added .hideAll()
*
* --youngpup--
*****************************************************/
ypSlideOutMenu.Registry = []
ypSlideOutMenu.aniLen = 250
ypSlideOutMenu.hideDelay = 100
ypSlideOutMenu.minCPUResolution = 10
// constructor
function ypSlideOutMenu(id, dir, left, top, width, height)
{
this.ie = document.all ? 1 : 0
this.ns4 = document.layers ? 1 : 0
this.dom = document.getElementById ? 1 : 0
if (this.ie || this.ns4 || this.dom) {
this.id = id
this.dir = dir
this.orientation = dir == "left" || dir == "right" ? "h" : "v"
this.dirType = dir == "right" || dir == "down" ? "-" : "+"
this.dim = this.orientation == "h" ? width : height
this.hideTimer = false
this.aniTimer = false
this.open = false
this.over = false
this.startTime = 0
this.gRef = "ypSlideOutMenu_"+id
eval(this.gRef+"=this")
ypSlideOutMenu.Registry[id] = this
var d = document
var strCSS = '<style type="text/css">';
strCSS += '#' + this.id + 'Container { visibility:hidden; '
strCSS += 'left:' + left + 'px; '
strCSS += 'top:' + top + 'px; '
strCSS += 'overflow:hidden; z-index:10000; }'
strCSS += '#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; '
strCSS += 'width:' + width + 'px; '
strCSS += 'height:' + height + 'px; '
strCSS += 'clip:rect(0 ' + width + ' ' + height + ' 0); '
strCSS += '}'
strCSS += '</style>'
d.write(strCSS)
this.load()
}
}
ypSlideOutMenu.prototype.load = function() {
var d = document
var lyrId1 = this.id + "Container"
var lyrId2 = this.id + "Content"
var obj1 = this.dom ? d.getElementById(lyrId1) : this.ie ? d.all[lyrId1] : d.layers[lyrId1]
if (obj1) var obj2 = this.ns4 ? obj1.layers[lyrId2] : this.ie ? d.all[lyrId2] : d.getElementById(lyrId2)
var temp
if (!obj1 || !obj2) window.setTimeout(this.gRef + ".load()", 100)
else {
this.container = obj1
this.menu = obj2
this.style = this.ns4 ? this.menu : this.menu.style
this.homePos = eval("0" + this.dirType + this.dim)
this.outPos = 0
this.accelConst = (this.outPos - this.homePos) / ypSlideOutMenu.aniLen / ypSlideOutMenu.aniLen 
// set event handlers.
if (this.ns4) this.menu.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
this.menu.onmouseover = new Function("ypSlideOutMenu.showMenu('" + this.id + "')")
this.menu.onmouseout = new Function("ypSlideOutMenu.hideMenu('" + this.id + "')")
//set initial state
this.endSlide()
}
}
ypSlideOutMenu.showMenu = function(id)
{
var reg = ypSlideOutMenu.Registry
var obj = ypSlideOutMenu.Registry[id]
if (obj.container) {
obj.over = true
for (menu in reg) if (id != menu) ypSlideOutMenu.hide(menu)
if (obj.hideTimer) { reg[id].hideTimer = window.clearTimeout(reg[id].hideTimer) }
if (!obj.open && !obj.aniTimer) reg[id].startSlide(true)
}
}
ypSlideOutMenu.hideMenu = function(id)
{
var obj = ypSlideOutMenu.Registry[id]
if (obj.container) {
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = window.setTimeout("ypSlideOutMenu.hide('" + id + "')", ypSlideOutMenu.hideDelay);
}
}
ypSlideOutMenu.hideAll = function()
{
var reg = ypSlideOutMenu.Registry
for (menu in reg) {
ypSlideOutMenu.hide(menu);
if (menu.hideTimer) window.clearTimeout(menu.hideTimer);
}
}
ypSlideOutMenu.hide = function(id)
{
var obj = ypSlideOutMenu.Registry[id]
obj.over = false
if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
obj.hideTimer = 0
if (obj.open && !obj.aniTimer) obj.startSlide(false)
}
ypSlideOutMenu.prototype.startSlide = function(open) {
this[open ? "onactivate" : "ondeactivate"]()
this.open = open
if (open) this.setVisibility(true)
this.startTime = (new Date()).getTime() 
this.aniTimer = window.setInterval(this.gRef + ".slide()", ypSlideOutMenu.minCPUResolution)
}
ypSlideOutMenu.prototype.slide = function() {
var elapsed = (new Date()).getTime() - this.startTime
if (elapsed > ypSlideOutMenu.aniLen) this.endSlide()
else {
var d = Math.round(Math.pow(ypSlideOutMenu.aniLen-elapsed, 2) * this.accelConst)
if (this.open && this.dirType == "-") d = -d
else if (this.open && this.dirType == "+") d = -d
else if (!this.open && this.dirType == "-") d = -this.dim + d
else d = this.dim + d
this.moveTo(d)
}
}
ypSlideOutMenu.prototype.endSlide = function() {
this.aniTimer = window.clearTimeout(this.aniTimer)
this.moveTo(this.open ? this.outPos : this.homePos)
if (!this.open) this.setVisibility(false)
if ((this.open && !this.over) || (!this.open && this.over)) {
this.startSlide(this.over)
}
}
ypSlideOutMenu.prototype.setVisibility = function(bShow) { 
var s = this.ns4 ? this.container : this.container.style
s.visibility = bShow ? "visible" : "hidden"
}
ypSlideOutMenu.prototype.moveTo = function(p) { 
this.style[this.orientation == "h" ? "left" : "top"] = this.ns4 ? p : p + "px"
}
ypSlideOutMenu.prototype.getPos = function(c) {
return parseInt(this.style[c])
}
ypSlideOutMenu.prototype.onactivate = function() { }
ypSlideOutMenu.prototype.ondeactivate = function() { }

function openfoto1() {
window.open('1.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto2() {
window.open('2.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto3() {
window.open('3.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto4() {
window.open('4.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto5() {
window.open('5.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto6() {
window.open('6.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto7() {
window.open('7.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto8() {
window.open('8.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto9() {
window.open('9.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto10() {
window.open('10.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto11() {
window.open('11.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto12() {
window.open('12.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto13() {
window.open('13.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto14() {
window.open('14.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto15() {
window.open('15.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto16() {
window.open('16.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto17() {
window.open('17.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto18() {
window.open('18.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto19() {
window.open('19.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto20() {
window.open('20.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto21() {
window.open('21.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto22() {
window.open('22.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto23() {
window.open('23.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto24() {
window.open('24.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto25() {
window.open('25.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto26() {
window.open('26.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto27() {
window.open('27.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto28() {
window.open('28.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto29() {
window.open('29.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto30() {
window.open('30.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto31() {
window.open('31.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto32() {
window.open('32.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto33() {
window.open('33.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto34() {
window.open('34.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto35() {
window.open('35.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto36() {
window.open('36.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto37() {
window.open('37.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto38() {
window.open('38.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto39() {
window.open('39.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto40() {
window.open('40.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto41() {
window.open('41.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto42() {
window.open('42.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto43() {
window.open('43.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto44() {
window.open('44.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto45() {
window.open('45.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto46() {
window.open('46.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto47() {
window.open('47.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto48() {
window.open('48.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto49() {
window.open('49.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto50() {
window.open('50.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto51() {
window.open('51.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto52() {
window.open('52.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto53() {
window.open('53.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto54() {
window.open('54.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto59() {
window.open('59.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto60() {
window.open('60.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto61() {
window.open('61.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto62() {
window.open('62.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto63() {
window.open('63.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto64() {
window.open('64.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto65() {
window.open('65.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto66() {
window.open('66.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto67() {
window.open('67.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto68() {
window.open('68.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto69() {
window.open('69.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto70() {
window.open('70.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto71() {
window.open('71.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto72() {
window.open('72.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto73() {
window.open('73.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto74() {
window.open('74.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto75() {
window.open('75.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto55() {
window.open('checker1.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=261, height=457')

}

function openfoto56() {
window.open('checker2.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=564, height=457')

}

function openfoto57() {
window.open('checker3.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=394, height=700')

}

function openfoto58() {
window.open('checker4.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=700, height=625')

}

function openfoto76() {
window.open('76.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto77() {
window.open('77.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto78() {
window.open('78.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto79() {
window.open('79.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto80() {
window.open('80.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto81() {
window.open('81.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto82() {
window.open('82.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}

function openfoto83() {
window.open('83.html','fotowin','scrollbars=NO, addressbar=NO, resizable=NO, status=NO, width=640, height=480')

}