function openWin(url, name, width, height, isScrollable, isResizable)
{
	if(isScrollable == null)
	{
		isScrollable = 'no'
	}
	
	if(isResizable == null)
	{
		isResizable = 'no'
	}
	
	openWinHandle(url, name, width, height, isScrollable, isResizable)
}
function openWinHandle(url, name, width, height, isScrollable, isResizable)
{
	return window.open(url, name, 'width=' + width + ',height=' + height + ', menubar=no, scrollbars=' + isScrollable + ', resizable=' + isResizable + ', status=no, toolbar=no');
}
