function openwin(url,w,h)
{
	window.open(url,'_blank','width='+w+',height='+h+',toolbar=yes,location=yes,statusbar=yes,menubar=yes,resizable=yes,scrollbars=yes');
}

function SetFocus(id)
{
	document.getElementById(id).focus();
}

function GetClientIP(id)
{
	alert(document.request.getRemoteAddr());
}