/* HTML Popup Box */

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=530,height=400,left=10,top=10');");
}

/* Iframe */

var table_of_contents = "blank.html";

var blank = " "; // blank page
var content = (location.search) ? location.search.substring(1, location.search.length) : table_of_contents;

function fillFrame() {
parent.main.location.href = content;
}

/* Auto-Resize Popup Image Box */

function PopupPic(sPicURL) { 
  window.open( "popwin.html?"+sPicURL, "",  "resizable=1,height=200,width=200,left=100,top=100");
} 

function PopupPic2(sPicURL) { 
  window.open( "/popwin.html?"+sPicURL, "",  "resizable=1,height=200,width=200,left=100,top=100");
} 