<!-- POP-UP CHECKBOX NAVIGATION MENU - I --> <!-- This goes into the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var X = 200; // change the # at the left for a fixed X co-ordinate to accommodate uncommon browsers var Y = 200; // change the # at the left for a fixed Y co-ordinate to accommodate uncommon browsers if (document.getElementById && navigator.appName.indexOf("Microsoft")==-1) { document.captureEvents(Event.MOUSEMOVE) function getcoords(e) { X = parseInt(e.screenX) - 80; // change the # at the left to further adjust the left-margin depending on the size of the window Y = parseInt(e.screenY) - 60; // change the # at the left to further adjust the top-margin depending on the size of the window return true;} document.onmousemove = getcoords; function openWin() { if (navigator.appName.indexOf("Microsoft")!=-1) { X = parseInt(event.screenX) - 80; // change the # at the left to further adjust the left-margin depending on the size of the window Y = parseInt(event.screenY) - 60; } // change the # at the left to further adjust the top-margin depending on the size of the window display=window.open('','NewWin','menubar=0,location=no,status=no,directories=no,toolbar=no,scrollbars=yes,height=110,width=190') message="<font face='verdana, arial, helvetica, san-serif' size='2'><form>"; message+="<input type='checkbox' onClick=window.open('http://www.microsoft.com/','') onBlur='window.close();' />Microsoft Corp.<br />"; message+="<input type='checkbox' onClick=window.open('http://home.netscape.com/','') onBlur='window.close();' />Netscape Corp.<br />"; message+="<input type='checkbox' onClick=window.open('http://www.macromedia.com','') onBlur='window.close();' />Macromedia Inc.<br />"; message+="<input type='checkbox' onClick=window.open('http://www.symantec.com','') onBlur='window.close();' />Symantec Corp.<br />"; message+="</form></font>"; display.moveTo(X,Y); display.document.write(message); } } // --> </script> <!-- This goes in the BODY of the html file --> <font face="verdana, arial, helvetica, san-serif" size="2"> <form><input type="button" value="Some Links" onClick="openWin()" /></form> </font>