// JavaScript Document
function mypopups(popname, popheight, popwidth, ptop, pleft)
{
mypop = document.getElementById('pop32');
mypop.style.visibility='visible';
mypop.src=popname;
mypop.style.height=popheight;
mypop.style.width=popwidth;
mypop.style.top=ptop;
mypop.style.marginLeft=pleft;
}
function closeIframe() {
   document.getElementById('pop32').style.visibility='hidden';
   }