﻿
function Popup(url, width, height, target, status) {
//    if (!target) target = '_blank';
//    if (!width) width = '430';
//    if (!height) height = '250';
//    if (!status) status = 'no';

    window.open(
		url,
		target,
		"width=" + width + ", height=" + height + ", scrollbars=yes, status=" + status + ", resizable=no"
	);
}
