function OpenNewWindow(bigurl, width, height)
{
var newWindow = window.open("", "pictureViewer",
"location=no,directories=no,fullscreen=no,menubar=no,status=no,toolbar=no,width=" + width + ",height=" + height + ",scrollbars=no,resizable=no");
newWindow.document.writeln("");
newWindow.document.writeln("
Thistle Help");
newWindow.document.writeln("");
newWindow.document.writeln("");
newWindow.document.writeln("");
newWindow.document.close();
}
function OpenTextWindow(url, width, height)
{
var newWindow = window.open(url, "CP", "width=" + width + ",height=" + height + ", scrollbars=yes,left=50,top=50,screenX=50,screenY=50'");
}