function gallerySmall(gall1)
{
    gall1Viewer=window.open(gall1, 'gall1View',
     'scrollbars=yes,resizable=yes,width=440,height=340')
     gall1Viewer.focus()
}
function galleryMed(gall2)
{
    gall2Viewer=window.open(gall2, 'gall2View',
     'scrollbars=yes,resizable=yes,width=840,height=640')
     gall2Viewer.focus()
}
function galleryMedlarge(gall3)
{
    gall3Viewer=window.open(gall3, 'gall3View',
     'scrollbars=yes,resizable=yes,width=1240,height=940')
     gall3Viewer.focus()
}
function galleryLarge(gall4)
{
    gall4Viewer=window.open(gall4, 'gall4View',
     'scrollbars=yes,resizable=yes,width=1640,height=1240')
     gall4Viewer.focus()
}
function newWindow(viewer)
{
    imageViewer=window.open(viewer, 'imageView',
     'scrollbars=yes,resizable=yes,width=640,height=640')
     imageViewer.focus()
}
function newText(text)
{
    textViewer=window.open(text, 'textView',
     'scrollbars=yes,resizable=yes,width=400,height=200')
     textViewer.focus()
}


