﻿function openWin(url, name, width, height, menubar, toolbar, scrollbars, status, resizable)
{
	var sFeatures   = "width=" + width + ","
					+ "height=" + height + ","
					+ "menubar=" + menubar + ","
					+ "toolbar=" + toolbar + ","
					+ "scrollbars=" + scrollbars + ","
					+ "status=" + status + ","
					+ "resizable=" + resizable;
	var objWin = window.open(url, name, sFeatures);
	objWin.focus();
}
function openLockWin(url, width, height, resizable, scroll, status)
{
	var sFeatures   = "dialogWidth:" + width + "px;"
					+ "dialogHeight:" + height + "px;"
					+ "resizable:" + resizable + ";"
					+ "scroll:" + scroll + ";"
					+ "status:" + status;
	window.showModalDialog(url, null, sFeatures);
}
function openMultiLockWin(url, width, height, resizable, scroll, status)
{
	var sFeatures   = "dialogWidth:" + width + "px;"
					+ "dialogHeight:" + height + "px;"
					+ "resizable:" + resizable + ";"
					+ "scroll:" + scroll + ";"
					+ "status:" + status;
	window.showModelessDialog(url, null, sFeatures);
}