function ChangeSubWeb()
{
	var subwebcat = document.getElementById("subwebcat").value;
	if (window.XMLHttpRequest) { // Mozilla, Safari,...
      oxmlhttp1 = new XMLHttpRequest();
    } else if (window.ActiveXObject) { // IE
      try {
        // ·sª©ªº IE
        oxmlhttp1 = new ActiveXObject("Msxml2.XMLHTTP");
      } catch (e) {
        try {
          // ÂÂª©ªº IE
          oxmlhttp1 = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (e) {}
      }
    }
	if (!oxmlhttp1) {
      alert('Giving up :( Cannot create an XMLHTTP instance');
      return false;
    }
	var httpStr1 = "/ChangeSubWeb.asp?subwebcat=" + subwebcat;
	
	oxmlhttp1.open( "GET", httpStr1, false );
	oxmlhttp1.send(null);
	var oRtn1 = oxmlhttp1.responseText;
	document.getElementById('subwebarea').innerHTML = oRtn1;
}

function ChangeSubWebLink()
{
	var subweb = document.getElementById("subweb").value;
	window.open (subweb,"newwindow");
}
