function unewWindow(url) {
	if (arguments.length > 1) {
		var width = String(arguments[1]);
		var height = String(arguments[2]);
		if ((loc = width.indexOf("%")) != -1) {
			width = width.slice(0, loc);
			width = Number(width);
			width = screen.width * (width / 100);
		}
		if ((loc = height.indexOf("%")) != -1) {
			height = height.slice(0, loc);
			height = Number(height);
			height = screen.height * (height / 100);
		}
	} else {
		var width = 860;
		var height = 765;
	}
	var attributeString = 'height=' + height + ',width=' + width + ',menubar=yes,scrollbars=no,resizable=yes,screenX=10,screenY=10,top=10,left=10';
//	alert(attributeString);
	window.open(url, 'NewWin', attributeString);
}

