
function new_window2(url,theTitle) {
	theWindow = window.open(url,"CASESTUDY","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=640,height=490,left=130,top=180");
	theWindow.document.title = theTitle;
	link.focus();
}
