var newWindow;
function go1(url, title) {
        newWindow=window.open("","_blank","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=620,height=360");
        var newContent='<html>\n<head><title>'+title+'</title></head>\n<body><img src="'+url+'" alt="'+title+'" title="'+title+'"></body>\n</html>';
        newWindow.document.write(newContent);
        newWindow.document.close();
}

function go3(url, title) {
        newWindow=window.open("","_blank","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=470,height=675");
        var newContent='<html>\n<head><title>'+title+'</title></head>\n<body><img src="'+url+'" alt="'+title+'" title="'+title+'"></body>\n</html>';
        newWindow.document.write(newContent);
        newWindow.document.close();
}

