function Linky(Name, Title, w, h) 
{

var winprops = 'height='+h+',width='+w+',scrollbars=no,status=yes'

    Img = window.open('', Title, winprops)
    Img.document.open();
    Img.document.writeln("<HTML>\n");
    Img.document.writeln("<BODY TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>");
    Img.document.writeln("<A HREF='JavaScript:window.close()' OnMouseOver='window.status=\"Close Window\"; return true'><IMG SRC='images/titles/"+Name+".jpg' BORDER=0></A>\n");
    Img.document.writeln("</BODY>\n");
    Img.document.writeln("</HTML>\n");
    Img.document.close();

if (parseInt(navigator.appVersion) >= 4) { Img.window.focus(); }
}

function Linky2(Name, Title, w, h) 
{

var winprops = 'height='+h+',width='+w+',scrollbars=no,status=yes'

    Img = window.open('', Title, winprops)
    Img.document.open();
    Img.document.writeln("<HTML>\n");
    Img.document.writeln("<BODY TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>");
    Img.document.writeln("<A HREF='JavaScript:window.close()' OnMouseOver='window.status=\"Close Window\"; return true'><IMG SRC='images/"+Name+".jpg' BORDER=0></A>\n");
    Img.document.writeln("</BODY>\n");
    Img.document.writeln("</HTML>\n");
    Img.document.close();

if (parseInt(navigator.appVersion) >= 4) { Img.window.focus(); }
}