document.writeln("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
document.writeln("<tr>");
document.writeln("<td class='brd-top bottom-link'>");
document.writeln("<a href='http://ebuild.imtindia.com' title='Real Time Web Based Real Estate and Construction ERP Software Home'>Construction ERP Software Home</a> | ");
document.writeln("<a href='http://ebuild.imtindia.com/contact_erp_provider.html' title='Contact ERP Provider'>Contact Us</a> | ");
document.writeln(" <a href='http://ebuild.imtindia.com/sitemap.html' title='Construction ERP Site Map'>Site Map</a><br />");
document.writeln("Copyright © 2006 - 2009 <a href='http://www.imtindia.com' title='India Web Design and Software Development firm' target='blank'>Interactive Multimedia Technologies</a>. All rights reserved.");
document.writeln("</td>");
document.writeln("</tr>");
document.writeln("</table>");


//Right click Disable

var message="Right Click Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")