<!--
function popUpWin(path, windowName, left, top, width, height) {
	var winArgs = "top=" + top + ",left=" + left + ",";
	winArgs+= "width=" + width + ",height="+ height + ",";
	winArgs+= "resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes";
	window.open(path, windowName, winArgs);
}
function popUpWin2(path, windowName, left, top, width, height) {
	var winArgs = "top=" + top + ",left=" + left + ",";
	winArgs+= "width=" + (screen.width - width) + ",height=" + (screen.height - height) + ",";
	winArgs+= "resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=yes";
	window.open(path, windowName, winArgs);
}
function insertTab(item) {
	if (event.keyCode == 9) {
		item.selection=document.selection.createRange();
		item.selection.text = "   ";
	      	event.returnValue = false;  
	}
}
// -->
