<!-- 

function openInPopup(thisH, type, windowname, width, height) {
	filename = thisH.href;
	switch (type) {
		case 'doc': showWin = window.open(filename,windowname,'menubar=1,scrollbars=1,toolbar=1,resizable=1,width='+width+',height='+height);	break
		default: 	showWin = showWin = window.open(filename,windowname,'scrollbars=auto,resizable=1,width='+width+',height='+height);	break
	}
	showWin.focus();
}




// -->