	function change_page(pag, r) {

		document.getElementById('mainframe').src = 'content.php?p=' + pag + (typeof(r) != 'undefined' && r ? '&r=' + r : '');

//    var img = document.getElementById('headerimg');
//    img.src = 'img/headers/' + pag + '.png';
//    img.alt = pag;
//    img.style.display = '';

	}

	function set_header(pag) {

    var img = window.parent.document.getElementById('headerimg');
    img.src = 'img/headers/' + pag + '.png';
    img.alt = pag;
    img.style.display = '';

	}

	function set_status(text) {
		window.status=text;
		return true;
	}

	function imgpopup(url,width,height) {
		pop_up = window.open('imagepopup.php?u='+url+'&h='+height+'&w='+width,'dummy','width='+width+',height='+height+',status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no,top=100,left=100');
		pop_up.focus();
	}

	function ilink(pag, r) {

		location.href = 'content.php?p=' + pag + (typeof(r) != 'undefined' && r ? '&r=' + r : '');
		set_header(pag);

	}
