function ShowWhatsThis(windowCode, width, height)
{
	windowURL = "whatsthis.aspx?popup_code=" + encodeURIComponent(windowCode);
	
	if(!(height > 0))
	{
		height = 400;
	}
	
	if(!(width > 0))
	{
		width = 400;
	}
	
	var whatsThisWindow = window.open(
		windowURL,
		"_blank",
		"width=" + width + ",height=" + height +",status=no,scrollbars=no,toolbar=no,resizable=no");
		
	whatsThisWindow.focus();
}
