function hideGoDaddy(){
          if( ! ( null === document.getElementById( "conash3D0" ) ) ) {
            gDaddy = document.getElementById( "conash3D0" );
            if( 'none' === gDaddy.style.display ) {}
            else { gDaddy.style.display = 'none'; }
          }
        }

	function loadXMLDoc(url)
	{
		if (window.XMLHttpRequest)
		{// code for IE7+, Firefox, Chrome, Opera, Safari
			xmlhttp=new XMLHttpRequest();
		}	
		else
		{// code for IE6, IE5
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
		xmlhttp.open("GET",url,false);
		xmlhttp.send(null);
		return xmlhttp.responseText;
		//document.getElementById('test').innerHTML=xmlhttp.responseText;
	}

    function initializeEmbeddedWave(ID) {
	    //alert("test");
	    //alert(ID);
      var wavePanel = new WavePanel('http://wave.google.com/a/wavesandbox.com/');
      var frame = document.getElementById('waveframe');
      //ID = frame.wave;
      wavePanel.loadWave('wavesandbox.com!w+'+ID);
      wavePanel.init(document.getElementById('waveframe'));
    }
