<!-- hide script from old browsers

// JAVASCRIPT FUNCTION PAGE


//Replaces an image with another image

function pic_swap(imgDocID, imgObjName, comment) 
{
document.images[imgDocID].src = imgObjName;
window.status = comment; return true;
}


//submit button (http://javascript.internet.com/buttons/click-to-submit.html)

function onKeyPress () 
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode == 13) {
alert("Please Click on the Submit button to send this");
return false
}
return true 
}
document.onkeypress = onKeyPress;

//End -->