function OpenHelp(sUrl)
{
	var left, top, width, height;
	width = screen.availWidth-40;
	height = screen.availHeight-80;
	left = parseInt((screen.availWidth/2) - (width/2));
	top = parseInt((screen.availHeight/2) - (height/2));	
	top -= 20;

	w = window.open(sUrl,'icmsHelp','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
	if(w)
		w.focus();
}
