function ClearClipBoard()
{
    document.getElementById('holdtext').innerText = "no report on clipboard";
    Copied = document.getElementById('holdtext').createTextRange();
    Copied.execCommand("Copy");
}

/* Ajax POST */
function makePostRequest( formName, targetDiv , targetURI ){
//alert('post request'+formName+targetDiv+targetURI);
// This function will submit, by POST, the form data to a processor.

var postCallback = 	{ 
	  	success: function(e) { 	document.getElementById( targetDiv ).innerHTML = e.responseText;	}	}

	var formObject = document.getElementById( formName ); 
		YAHOO.util.Connect.setForm(formObject); 
	var cObj = YAHOO.util.Connect.asyncRequest('POST', targetURI , postCallback ); 
};


function initTabMenu(){
	var myTabs = new YAHOO.widget.TabView("extra_information", { activeIndex: 0 } ); 
	
	// Scan for (say) all paragraph elements and react if they are clicked on.


	} // end init tabs
	
