﻿// JScript File

function DoOpenInfoWnd(url, wndname, width, height){
	if(width == null) width = 400;
	if(height == null) height = 400;
	if(wndname == null) wndname = "infobox";
	var options = "width=" + width + ", height=" + height + ",status=0,toolbar=0,resizable=1,menubar=0,scrollbars=1";
	window.open(url, wndname, options);
}

function DoOpenWnd(url, wndname, width, height, scrollbars){
	if(width == null) width = 400;
	if(height == null) height = 400;
	if(wndname == null) wndname = "Dialog";
	if(scrollbars == null || scrollbars)
		scrollbars = "1";
	else
		scrollbars = "0";
		
	var options = "width=" + width + ", height=" + height + ",status=0,toolbar=0,resizable=1,menubar=0,scrollbars=" + scrollbars;
	window.open(url, wndname, options);
}



