//javascript code for pop-ups
//takes filename,itended window name and window dimensions,allows option to bool scrollbars
//could allow in future for bool'd resize
function imagePopup(filename,name,widthP,heightP,scrollbarsB){
    if(!scrollbarsB){
        scrollbarsB = 'no';
    }
    leftC = (screen.width-widthP)/2;topC = (screen.height-heightP)/2;
    windowProperties = 'width='+widthP+',height='+heightP+',top='+topC+',left='+leftC+',resizable=yes,scrollbars='+scrollbarsB;
    window.open(filename,name,windowProperties);
}
function callMe(theForm){
    var funky = escape(theForm.gogo.value);
    imagePopup("md_test.php?m=sub&email="+funky,funky,350,100,"no");
}
function closeAndRefresh(opener,self){
    opener.document.reload();
    self.close();
}
