function popup(strURL,strType,strHeight,strWidth,winName) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="fixed2") strOptions="status,scrollbars,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed3") strOptions="status,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, winName, strOptions);
}