| Here are a few "how too's"------> ___________ Here is a code to stop peeps from stealing your graphics! <script language="JavaScript"> <!-- // No rightclick script v.2.5 // (c) 1998 barts1000 // [email protected] // Don't delete this header! var message="Sorry\n\nThe graphics on this page are not availble for you to use."; // Message for the alert box // Don't edit below! function click(e) { if (document.all) { if (event.button == 2) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> </script> __________________________________ Here. Filling in this when putting up a picture and linking it will keep those little blue borders from comming up. <IMG SRC="____.jpg" WIDTH=__ HEIGHT=__ BORDER=0> _________________________________________________ Here is the javascript for a pop up window. <script language="JavaScript"> function NAME_IT() { window.open('eye.html','EANITHING','toolbar=no,location=no, directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width =300,height=300'); } </script> <a href="javascript:NAME_IT()" onmouseover="window.status= 'Click me and you will get the script!'; return true">*Click Here*</a> ##You decide what page will load into the new window by replacing "eye.html" with the url of your choice. You can change size and look of the new window by making adjustments to the yes/no settings. You can change what reads along the bottom when the mouse is placed by changing "Click Me and you'll get the script!" to what ever you want. If you are not sure what this means, hold the arrow on top of *Click Here!* and check the text at the bottom of the browser.## ## The small script below is what created the "close button".## <CENTER><P><FORM><INPUT TYPE='BUTTON' VALUE='Close Window' onClick='self.close()'></FORM></P></CENTER> |
![]() |