﻿function SetFocus(ControlID)
{
	document.getElementById(ControlID).focus();
	document.getElementById(ControlID).value = document.getElementById(ControlID).value;
}

function OpenWindow(sUrl, sName, iWidth, iHeight, iLeft, iTop)
{
	window.open(sUrl, sName, "width=" + iWidth + ", height=" + iHeight + ", top=" + iTop + ", left=" + iLeft + ", screenY=" + iTop + ", screenX=" + iLeft + ", scrollbars=yes, resizable=yes");
}
