// JavaScript Document

// Monitor Screen Resolutions

swidth = document.documentElement.clientWidth;
//alert (swidth)
if (swidth <= 1024){
nwidth = 170;
}else {
nwidth = ((swidth-1024)/2)+300;
}
wid = nwidth+"px 51px";
document.getElementById("man_bg").style.background= "url(images/man-img-bg.jpg) no-repeat "+wid;

