<html> <head> <title>URL</title> <script> function go() { if ((document.form.url.value=="")) {alert("URLÀ» ÀÔ·ÂÇÏ¿© ÁÖ¼¼¿ä"); return false; } window.open(""+document.form.url.value+"") } </script> </head> <body> <form name="form" method="post" onsubmit="return go();"> ÁÖ¼Ò¸¦ ÀÔ·ÂÇÏ¿© ÁÖ¼¼¿ä: <input type="text" value="" name="url"> <input type="button" value="Go.." onclick="go()"> <input type="reset" value="ÃʱâÈ"> </form> </body> </html>