// JavaScript Document
function OpenNewWindow(bigurl, width, height)
{
    var newWindow = window.open("", "pictureViewer", "width=" + width + ", height=" + height);
    newWindow.document.writeln("<html>");
	newWindow.document.writeln("<head><link href='css/style_1.css' rel='stylesheet' type='text/css'></head>");	
    newWindow.document.writeln("<body>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
  newWindow.document.writeln("<img src='" + bigurl + "' alt='Click to close' id='bigImage' width=" + width + " height=" + height + " class='no_brd' >");
    newWindow.document.writeln("</a>");
    newWindow.document.writeln("</body></html>");
    newWindow.document.close();
}

function OpenNewWindow2(hurl)
{
    var newWindow = window.open(hurl, "subs", "scrollbars=1, width=516, height=550");
}

function OpenNewWindow3(wurl, width, height)
{
    var newWindow = window.open(wurl, "", "scrollbars=1, width=" + width + ", height=" + height);
}

function OpenNewWindowp(wurl, width, height)
{
    var newWindow = window.open(wurl, "", "menubar=1, scrollbars=1, width=" + width + ", height=" + height);
}

function OpenNewWindow5(wurl)
{
    var newWindow = window.open(wurl, "");
}