<!-- 
function bgws_ShadowShow(t) 
{
	oSB = MM_findObj("shadowBox")
	oSB.style.display = "";
	oSB.style.width = "100%";
	oSB.style.height = "100%";
	oSB_C = MM_findObj("shadowBoxcontent")
	bgws_AJAX(t)
}
function bgws_ShadowHide() 
{
	oSB = MM_findObj("shadowBox")
	oSB.style.display = "none";
	oSB.style.width = "0px";
	oSB.style.height = "0px";
	oSB_C = MM_findObj("shadowBoxcontent")
	oSB_C.innerHTML = ""
}

function bgws_AJAX(t)
{
	try	{ ajaxRequest = new XMLHttpRequest(); } 
	catch (e) {	try{ ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");	} 
		catch (e) {	try{ ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP"); } 
			catch (e){ alert("Your browser broke!"); return false;	}	} 	}

	ajaxRequest.onreadystatechange = function(){ if(ajaxRequest.readyState == 4){ var oSB_C = MM_findObj("shadowBoxcontent"); oSB_C.innerHTML = ajaxRequest.responseText; } }
	var queryString = "";
	ajaxRequest.open("GET", t, true);
	ajaxRequest.send(null); 
}
//-->
