﻿function openWindow(width, height, url, name) {
    var winvar = window.open(url,
        'open_window',
        'menubar=false, links=false, toolbar=false, location=false, directories=false, status=false, scrollbars=false, resizable=false, dependent, width=' + width + ', height=' + height);
}
    