
<!--
	function CanHandleXML(URLYes, URLNo) {
		if ((document.implementation && document.implementation.createDocument) || window.ActiveXObject) {
		//if (window.ActiveXObject) {
			//window.open(URLYes,'','',true);
			document.location.href = URLYes;
			}
		else {
			//window.open(URLNo,'','',true)
			document.location.href = URLNo;
		}
	}
//-->
