<!--PAGE SCROLLER--> <!-- This whole script goes in the HEAD the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2002, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function scroller(form) { var X = prompt('Please enter the X co-ordinate', '00'); var Y = prompt('Please enter the Y co-ordinate', '00'); window.scrollTo(X, Y); } //--> </script> <!-- This goes in the BODY the html file --> <form> <input type="button" value="Click Here" onClick="scroller(this.form);" /> </form>