\n');
}
// Hook for Internet Explorer
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write(' \n');
}
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 &&
navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write(' \n');
}
//-->
function newWindow(urlwindow,wt,wl,wh,ww) {
closeWindow()
attr = "TOP = " +wt+",LEFT = "+wl+",HEIGHT="+wh+",WIDTH="+ww+",RESIZABLE=YES,title=NO"
newWind = window.open(urlwindow,'help',attr)
// take care of Navigator 2
if (newWind.opener == null) {
newWind.opener = window
}
//setTimeout("finishNewWindow()", 100)
}
function finishNewWindow() {
var output = ""
output += "
A Sub-window
"
output += ""
newWind.document.write(output)
newWind.document.close()
}
// close subwindow, including ugly workaround for IE3
function closeWindow() {
if (isIE3) {
// if window is already open, nothing appears to happen
// but if not, the subwindow flashes momentarily (yech!)
newWind = window.open("","subwindow","HEIGHT=521,WIDTH=800")
}
if (newWind && !newWind.closed) {
newWind.close()
}
}
function reveal2(imagesrc,offset,lwidth,lheight) {
layerpos = event.clientY + offset //+'px'
document.getElementById('Layer2').style.top = layerpos;
document.getElementById('Layer2').style.width = lwidth+'px';
document.getElementById('Layer2').style.height = lheight+'px';
document.getElementById('Layer2').style.visibility = "visible";
}
function hideClip() {
setTimeout("hide()", 1000)
}
function hide() {
document.getElementById('Layer1').style.visibility = "hidden";
}
function hide2() {
document.getElementById('Layer2').style.visibility = "hidden";
}