<html>
<head>
<script type="text/javascript">
function showWindow() {
var txt = document.form1.stringField.value;
var sze = "";
sze = document.form1.sizeList.options[document.form1.sizeList.options.selectedIndex].text;
txt = txt.fontsize(sze);
objWindow = window.open("", "","width=600,height=300");
objWindow.document.write(txt);
objWindow.document.close();
}
</script>
</head>
<body>
<form method="post" name="form1" action="null">
String:<input type="text" size="40" maxlength="256" name="stringField" />
Size:
<select name="sizeList" size="1">
<option selected="selected">1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
</select>
<input type="button" name="Show" value="Show" onclick="showWindow()" />
</form>
</body>
</html>
|