function newWin(strURL,strType,strWidth,strHeight) {
var strOptions="";
if (strType=="console") strOptions="resizable,scrollbars,width="+strWidth+",height="+strHeight;
if (strType=="fixed") strOptions="status,width="+strWidth+",height="+strHeight;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,width="+strWidth+",height="+strHeight;
var winOpen = window.open(strURL, 'Showcase', strOptions);
winOpen.focus();
}