function picture(where,thePictureUrl,theWidth){

if (where != "main"){
thePictureUrl="../images/"+where+"/"+thePictureUrl;
}
else{
thePictureUrl="images/"+thePictureUrl;
}

if (theWidth == "wide")
popupWin = window.open(thePictureUrl, "The_Picture", 'status,scrollbars,resizable,width=640,height=300')
else if (theWidth == "tall")
popupWin = window.open(thePictureUrl, "The_Picture", 'status,scrollbars,resizable,width=450,height=480')
else
popupWin = window.open(thePictureUrl, "The_Picture", 'status,scrollbars,resizable,width=550,height=400')

if(window.focus){
popupWin.focus();
}

}
