<html>
<head><title>senlypan</title><script language="javascript">
fun1()
{
Confirm("提示信息comfirm");
}
fun2()
{
alert("提示信息alert");
}
fun3()
{
Prompt("提示信息prompt");
}
document.write("hold or not !");
</script><style type="text/css">
a:link{color:White ; text-decoration :none;}  
a:visited{color:Red; text-decoration:none;}
a:active{color:Green; text-decoration:none;}
a:hover{color:Blue; text-decoration:none;} </style>
</head>
<body>
senlypan
<a href ="#">senlypan   http://www.100fosu.com             hello   </a><form name="myform">
<input type= "button" name="input1" value = "confirm" onClick="fun1()"/><input type= "button" name="input2" value = "alert" onClick="fun2()"/><input type= "button" name="input3" value = "prompt" onClick="fun3()"/>
</form></body></html>