// JavaScript Document
var boodschap ='2008 Bumi Asih Jaya. Power By: PT. Mitrasolusi Teknologi Mandiri';
function dgstatus()
{
  window.status = boodschap;
  timerID       = setTimeout("dgstatus()", 25);
}
dgstatus();

// no select

var omitformtags=["select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

// Mouse Right
var message="PT. BUMI ASIH JAYA\n\nPower by: PT. Mitrasolusi Teknologi Mandiri";
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;