//
//
function openPopup(url, w, h) {
	if (w == "") { w = "600";}
	if (h == "") { h = "450";}
	window.open(url, 'caseStudy', 'width='+w+',height='+h+',scrollbars=1,location=0,toolbar=1,status=1,resizable=1'); 
	return false;
}
function openCaseStudy(url) {
	return openPopup(url, 600, 450);
}
//
function rolloverImg(imgsrc, newimg) {
	imgsrc.src = newimg;
}

