
function placeCursor(n) {
	document.forms[0].elements[n].focus();
	document.forms[0].elements[n].select();
}
function display(stuff) {
window.status=stuff;
return true;
}
function link(n) {
document.forms[n].submit();
return true;
}

var isReady = false;
function doSaveAs(){
if (document.execCommand){
if (isReady){document.execCommand("SaveAs");}
}else{
alert('Feature available only in Internet Exlorer 4.0 and later.');
}
}

// Javascript1.2



am="© Trilogy Media Pty Ltd";
bV=parseInt(navigator.appVersion)
bNS=navigator.appName=="Netscape"
bIE=navigator.appName=="Microsoft Internet Explorer" 
function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

