Window Baru

or
Open javascriptsource.com 
Copy skrip atau download.
<!-- TWO STEPS TO INSTALL NEW WINDOW: 

  1. Copy the first coding into the HEAD of your HTML document 
  2. Paste the last code in the BODY of your HTML document --> 

  <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> 

  <HEAD> 

  <SCRIPT LANGUAGE="JavaScript"> 

  <!-- This script and many more are available free online at --> 
  <!-- The JavaScript Source!! http://javascript.internet.com --> 

  <!-- Begin 
  function Start(page) { 
  OpenWin = this.open(page, "CtrlWindow", 
  "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resize=yes"); 
  } 
  // End --> 
  </SCRIPT> 

  </HEAD> 

  <!-- STEP ONE: Paste this code into the BODY of your HTML document --> 

  <BODY> 

  <center> 
  <form> 
  <input type=button onClick="Start('http://javascript.internet.com')" value="Open 
  javascriptsource.com"> 
  </form> 
  or<P> 
  <a href="javascript:Start('http://javascript.internet.com')";>Open 
  javascriptsource.com</a> 
  </center> 

  <!-- Script Size: 0.96 KB --> 

 
1