Akhen's Help Page
I'm sure you've been travelling around the net and you've seen some pretty neat stuff. In the table below you will see the "No Right Click" feature. This is really nice to use if you have art that you want people not to steal. Of course this will only prevent the semi-honest thief. If someone is determined enough, there isn't much you can do to stop them. At least with this code it tell the person that the pictures on your page are not for public use.

The next one is the "Browser Scroller" feature. If you take a look at the bottom of your window, you'll see what it does. You can edit the code so it scrolls whatever you want it to. This is nice for decoration and again can be used to let people know to leave your material where it is.

No Right Click Browser Scroller
<script language="JavaScript"> <!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// Don't delete this header!

var message="YOUR TEXT HERE"; // 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>

</SCRIPT LANGUAGE="JavaScript">
<script language="JavaScript">
<!-- Hide

var scrtxt="WHAT YOU WANT IT TO SAY";
var lentxt=scrtxt.length;
var width=100;
var pos=1-width;

function scroll() {
pos++;
var scroller="";
if (pos==lentxt) {
pos=1-width;
}
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++) {
scroller=scroller+" ";}
scroller=scroller+scrtxt.substring(0,width-i+1);
}
else {
scroller=scroller+scrtxt.substring(pos,width+pos);
}
window.status = scroller;
setTimeout("scroll()",150);
}
//-->
</script>
<body onLoad="scroll();return true;">


Now how about adding an email feature to your page? This is a very simple code too and you can use it as a picture link as well. You'll see that the second code is a little different right. That little "?subject=" addy fills in the Subject option in the email letter. You can change it to say whatever you want.

Email Basic <A HREF="mailto:EMAIL ADDRESS"></a>
Email Novice <A HREF="mailto:EMAIL ADDRESS?subject=Comments"></a>


I had the question "How to make a popup window?" Now you should all know one way and that's the "Target="_blank" tag for opening a new borwser window, but there is also a miniwindow with no browser tools that can help explain certain parts of your page. I'm sure you all know what I'm talking about. You know those windows that keep poping up when you try to leave a page and you scream and swear at them because they just don't stop? Well now you can do them too! Example