function popCalc() {
 var msgWindow=window.open('','popcalc','width=280,height=360,resizable=1,menubar=0,scrollbars=1,toolbar=0,status=0,location=0,screenX=20,screenY=20,top=20,left=20');
     msgWindow.document.writeln('<html>');
 msgWindow.document.writeln('<head><title>Download Timings</title>');
 msgWindow.document.writeln("<SCRI"+"PT src='scripts/cpscalc.js'></SCR"+"IPT>");
 msgWindow.document.writeln('</head>');
 msgWindow.document.writeln('<body bgcolor="#FFFFCC">');
msgWindow.document.writeln('<DIV ALIGN="center">');
msgWindow.document.writeln('<FORM NAME="myform" ONSUBMIT="return false;">');
msgWindow.document.writeln('<TABLE BORDER="3" WIDTH="33%" CELLPADDING="2" CELLSPACING="0">');
msgWindow.document.writeln('<TR><TD COLSPAN="2" BGCOLOR="#CCFFFF">');
msgWindow.document.writeln('<B><FONT SIZE="2" FACE="arial,helvetica">File Size:</FONT></B><BR>');
msgWindow.document.writeln('<INPUT TYPE="TEXT" NAME="dimension" VALUE="100">');
msgWindow.document.writeln('<SELECT NAME="unit">');
msgWindow.document.writeln('<OPTION>Bytes');
msgWindow.document.writeln('<OPTION SELECTED>kB');
msgWindow.document.writeln('<OPTION>mB');
msgWindow.document.writeln('</SELECT>');
msgWindow.document.writeln('</TD></TR>');
msgWindow.document.writeln('<TR><TD COLSPAN="2" BGCOLOR="#CCFFFF">');
msgWindow.document.writeln('<B><FONT SIZE="2" FACE="arial,helvetica">Transfer Rate:</FONT></B><BR>');
msgWindow.document.writeln('<INPUT TYPE="TEXT" NAME="speed" VALUE="33600">');
msgWindow.document.writeln('<SELECT NAME="unitV">');
msgWindow.document.writeln('<OPTION>cps&nbsp;&nbsp;&nbsp;');
msgWindow.document.writeln('<OPTION SELECTED>bps');
msgWindow.document.writeln('</SELECT>');
msgWindow.document.writeln('</TD></TR>');
msgWindow.document.writeln('<TR><TD ALIGN="center" BGCOLOR="#CCFFFF">');
msgWindow.document.writeln('<INPUT TYPE="SUBMIT" VALUE="Calculate Transfer Rate" ONCLICK="cpscalc(this.form);"></TD></TR>');
msgWindow.document.writeln('<TR><TD BGCOLOR="#CCFFFF"><B><FONT SIZE="2" FACE="arial,helvetica">Estimated Download Time:</FONT></B><BR>');
msgWindow.document.writeln('<INPUT TYPE="TEXT" NAME="result" SIZE="29"></TD></TR>');
msgWindow.document.writeln('<TR><TD COLSPAN="2" BGCOLOR="#CCFFFF"><FONT SIZE="2" FACE="arial,helvetica">Note: &nbsp;These are optimal times where Internet bandwidth allows for maximum modem transfer rates.</FONT></TD></TR>');
msgWindow.document.writeln('</TABLE></FORM>');
msgWindow.document.writeln('</DIV>');
	 msgWindow.document.writeln('<div align="center"><form><input type="button" value="CLOSE" onClick="self.close();return true;"></form></div>');
	 msgWindow.document.writeln('</body></html>');
     msgWindow.document.close();
 }
 
