
function popup(filename, windowname)







{







        options = "width="  + (550+6+6-0)      + "," + "height=" + (500+6+20-0) + "," + "status=yes"               + "," + "toolbar=no"              + "," + "resizable=yes"     + "," + "menubar=yes"        + "," + "scrollbars=yes";







	dp = open(filename, windowname, options);



if (dp.opener == null) dp.opener = self;



	dp.focus();

}


function popup2(filename, windowname)







{







        options = "width="  + (450+6+6-0)      + "," + "height=" + (350+6+20-0) + "," + "status=no"               + "," + "toolbar=no"              + "," + "resizable=yes"            + "," + "scrollbars=yes";







	dp2 = open(filename, "test2", options);



if (dp2.opener == null) dp2.opener = self;



	dp2.focus();







}


function popup3(filename, windowname)







{







        options = "width="  + (250+6+6-0)      + "," + "height=" + (150+6+20-0) + "," + "status=no"               + "," + "toolbar=no"              + "," + "resizable=yes"            + "," + "scrollbars=yes";







	dp2 = open(filename, "test2", options);



if (dp2.opener == null) dp2.opener = self;



	dp2.focus();







}












