<SCRIPT LANGUAGE="JavaScript">
<!--
function NewPage(){
document.open(); //(1)
document.write( "<HTML><HEAD>" );
document.write( "<TITLE>NEW Page</TITLE></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>新規のページを作成しました!</H1><BR>" );
document.write("ここのURLは" , document.location , "です<P>" ); //(7)
document.write("<A HREF='jss20.html'>戻る</A>");
document.write( "</BODY></HTML>" );
document.close(); //(8)
}
//-->
</SCRIPT>
<FORM NAME="np">
<INPUT TYPE=BUTTON VALUE="新規のページ作成" ONCLICK="NewPage()">
</FORM>