function ss(msg) {  window.status=msg; return true; }
function cs() {  window.status='Welcome to our Website!'; return true; }

function settitle() {
document.title = 'EasyRes.com.au' ;
}

function resize() {
var width = screen.width;
var res =(((!(640-width))*1)+((!(800-width))*2)+((!(1024-width))*3)+((!(1152-width))*4)+((!(1280-width))*5)+((!(1600-width))*6));
if(!(res)) res = 1;
switch(res) {
case 1:
     document.getElementById('body').style.background = '#CDDFF1';
     document.getElementById('logo').style.width = '240px';
     document.getElementById('logo').style.height = '30px';
     break
case 2:
     document.getElementById('body').style.background = '#CDDFF1';
     document.getElementById('logo').style.width = '360px';
     document.getElementById('logo').style.height = '40px';
     break
case 3:
     document.getElementById('body').style.background = '#CDDFF1';
     document.getElementById('logo').style.width = '480px';
     document.getElementById('logo').style.height = '65px';
     break;
default:
     document.getElementById('body').style.background = '#CDDFF1';
}
settitle();
}

//Highlight image script - START
//Highlight image script- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use

function makevisible(cur,which){
strength=(which==0)? 1 : 0.2

if (cur.style.MozOpacity)
cur.style.MozOpacity=strength
else if (cur.filters)
cur.filters.alpha.opacity=strength*100
}
//Highlight image script - END
