var openwind;
function load_pic(page_name,width,height) {  
   if (openwind != null) {openwind.close();}
  openwind = window.open("about:blank", "picWin","width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no");
openwind.document.write('<div align="center">');
openwind.document.write('<img src="'+page_name+'">');
openwind.document.bgColor="#A4A4A4";
}


function load_pg(page_name,width,height) {  
window.open(page_name, "pgWin","width=800,toolbar=no,scroll=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes");
}

