
function openMediaPlayer( id, type ) {
	var url = 'http://www.wts.edu/flash/media_popup/media_player.php?id=' + id + '&paramType=' + type;
	window.open( url, '_new', 'width=710,height=470,location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes');
	return false;
}

function printPage( section, path, query_string ) {
	var url = 'http://www.wts.edu/printPage.php?popup_section=' + escape(section) + '&popup_path=' + escape(path) + '&' + query_string;
	window.open( url, '_new', 'width=800,height="600",location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes');
}

function getFormElements( formName ) {
	thisForm = document.getElementById( formName );
	var allElems = '';
	
	for( var i=0; i < thisForm.length; i++ ) {
		allElems += thisForm.elements[i].name + ',';
	}
	
	var info = document.createElement('input');
	info.setAttribute('type', 'hidden');
	info.setAttribute('value', allElems );
	thisForm.appendChild( info );
}