function openPopupWindow(strURL, strType, strHeight, strWidth, strTop, strLeft){
    var positionStr = ',';
    if (strTop != null && strLeft != null) 
        positionStr += 'left=' + strLeft + ',top=' + strTop;
    else 
        positionStr += 'left=150,top=120';
    
    var strOptions = "";
    
    if (strType == "console") 
        strOptions = "scrollbars,height=" + strHeight + ",width=" + strWidth;
    
    if (strType == "fixed") 
        strOptions = "status,height=" + strHeight + ",width=" + strWidth;
    
    if (strType == "elastic") 
        strOptions = "scrollbars,resizable,height=" + strHeight + ",width=" + strWidth;
    
    strOptions = strOptions + positionStr;
    popUpWindow = window.open(strURL, 'popUpWindow', strOptions);
    popUpWindow.focus();
}