// function advances the page

function PagingAdvance(url, iPage) {
	document.location.href = url + 'page=' + iPage;
}


// function changes the translation

function ChangeTranslation(object_name) {

	document.location.href = object_name.options[object_name.selectedIndex].value;


}


//function prints the window

function printWindow() {
  if (window.print)
    window.print()
}

