function LoadSample(that,theurl){
	var browserName = new String(navigator.appName);
	var browserVer = parseInt ( navigator.appVersion );
	if (browserName.search(/microsoft/i) != -1 && browserVer >= 4) 
	{
		that.href="#";
		void window.open(theurl,"sampledisplay","width=800,height=630,resizable=yes,scrollbars=yes").focus();
	} 
}
