
//DESC: Swaps existing image onMouseOver
function swapImage(div,img) 
{ 
	document.getElementById('rust_div').style.backgroundImage = "url(../images/"+img+")";
}

function showPic(url, width, height)
{
	var win		= window.open('','_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width='+(width+20)+', height='+(height));
	win.document.write("<html><head></head><body onblur='window.close();' onload='window.focus();' style='margin: 0px; text-align: center;'><img src='"+url+"' alt='gallery picure' /></body></html>");
	win.document.close();
}



