// JavaScript Document


version = navigator.appVersion;


if (version.toLowerCase().indexOf("win")!=-1) {
document.write("<link rel=stylesheet href=\"pc_ie.css\" type=\"text\/css\">");
}
else if (version.toLowerCase().indexOf("mac")!=-1) 
{
document.write("<link rel=stylesheet href=\"mac_ie.css\" type=\"text\/css\">");
}



function over(ob) { 
  ob.style.backgroundColor='#795246';

  }

function out(ob) { 
ob.style.backgroundColor='#DFD0B3';

}

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable,toolbar=no,status'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}

