/**************************************************
* Function   : tableJump
*
* Description: Switches window to most visited table page
*
* Parameters : 
*     subject: The table subject
*
****************************************************/
function tableJump(subject) {
	var S;

	// Set the subject
	if (subject.options[subject.selectedIndex].value == '') {
		S = subject.options[subject.selectedIndex].text;
	} else {
		S = subject.options[subject.selectedIndex].value;
	}
	document.location='/DB/DBMVTable.php?S=' + escape(S);
}
/**************************************************
* Function   : factsheetJump
*
* Description: Switches window to a factsheet
*
* Parameters : 
*     subject: The table subject
*
****************************************************/
function factsheetJump(factsheet) {
	var myUrl;
	// Set the URL
	if (factsheet.options[factsheet.selectedIndex].value == '') {
		myUrl = factsheet.options[factsheet.selectedIndex].text;
	} else {
		myUrl = factsheet.options[factsheet.selectedIndex].value;
	}
	document.location='/DB/factsheet/' + escape(myUrl);
}