<SCRIPT TYPE="text/JavaScript"> <!-- function NewPage() { document.open(); // (1) document.write( "<HTML><HEAD>" ); document.write( "<TITLE>NEW Page</TITLE>" ); document.write( "</HEAD><BODY>" ); document.alinkColor = 0xff0000; // (2) document.bgColor = 0x000000; // (3) document.fgColor = 0xffffff; // (4) document.linkColor = 0xffff00; // (5) document.vlinkColor = 0x00ff00; // (6) document.write( "<H1>新規のページを作成しました!" ); document.write( "</H1><BR>ここの URL は " ); document.write( document.location, " です<BR><BR>" ); // (7) document.write("<A HREF='jss14.html'>戻る</A>"); document.write( "</BODY></HTML>" ); document.close(); // (8) } //--> </SCRIPT> <FORM NAME="np"> <INPUT TYPE="BUTTON" VALUE="NewPage" ONCLICK="NewPage()"> </FORM> |