function O_openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);

}

var browser=false;
if (document.images) browser=true;
function objectdata(replaceimg,restoreimg,wmess) {

if (browser) { 
this.wmess=wmess;
this.simg=new Image();
this.simg.src=replaceimg;
this.rimg=new Image();
this.rimg.src=restoreimg; } 

}

if (browser) {

var object=new Array();

object['img_s1']= new
objectdata("graphic/home/logo-1r.gif","graphic/home/logo-1.gif","New Projects");

object['img_1']= new
objectdata("graphic/home/links/n1r.gif","graphic/home/links/n1.gif","About Us");

object['img_2']= new
objectdata("graphic/home/links/n2r.gif","graphic/home/links/n2.gif","Portfolio");

object['img_3']= new
objectdata("graphic/home/links/n3r.gif","graphic/home/links/n3.gif","Services"); 

object['img_4']= new
objectdata("graphic/home/links/n4r.gif","graphic/home/links/n4.gif","Blog");

object['img_5']= new
objectdata("graphic/home/links/n5r.gif","graphic/home/links/n5.gif","Contact");

}

function ReplaceOrig(name) {

if (browser) { 
window.status=object[name].wmess;
document[name].src=object[name].simg.src; } } 

function RestoreOrig(name) {

if (browser) {
window.status="";
document[name].src=object[name].rimg.src; } 

}
