I have the following html code:
</SCRIPT>
<script language="JavaScript">
<!--
function OpenAbout()
{
var centerWidth=(screen.width/2)-(680/2);
var centerHeight=(screen.height/2)-(600/2);
var sReportName = "about.aspx"
winpops=window.open
(sReportName,"_blank","height=600,width=680,top="+centerHeight+",left="+centerWidth+",toolbar=0,loca tion=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0,")
}
//-->
</script>
Can I change the line:
var sReportName = "about.aspx"
so that "about.aspx" is equal to the text of a combo box on the web page?
