﻿
    function displayWindow(url, width, height) {
        
        var wdth = 260;
        var hgt = 260;
        if(width > 0){wdth = width;}
        if(height > 0){hgt = height;}
        var options;
        options = 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,status=no,titlebar=no'
        
        var Win = window.open(url,"displayWindow",options );
    }

