// JavaScript Document
function openwindow()
{
window.open("SlideShow.html","Slideshow","toolbar=no,location=no,directories=no, scrollbars=no,menubar=no, resizable=no,width=550,height=485 screen=x, screen=y, left=0, top=0")
}

function openCenterWin(url,theWidth,theHeight)
{
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes";

theWin=window.open(url,'',features);
}
