// JavaScript Document

var newwindow = ''
function popitup(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 
    newwindow=window.open(url,'htmlname','width=350,height=550,left=10,top=10,resizable=0');} 
}

var newwindow = ''
function popitup2(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 
    newwindow=window.open(url,'htmlname','width=450,height=350,left=10,top=10,resizable=0');} 
}

var newwindow = ''
function popitup3(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 
    newwindow=window.open(url,'htmlname','width=750,height=550,left=10,top=10,resizable=0');} 
}

var newwindow = ''
function popitup4(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 
    newwindow=window.open(url,'htmlname','width=550,height=300,left=10,top=10,resizable=0');} 
}

var newwindow = ''
function popituppdf(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 
    newwindow=window.open(url,'htmlname','width=500,height=500,menubar=yes,toolbar=yes,scrollbars=yes,left=10,top=10,resizable=1');} 
}

function tidy() {
if (newwindow.location && !newwindow.closed) { 
   newwindow.close(); } 
}
