<!--

function gotoPage(page) {

	window.location = page;

}

function popWindow (url, name, width, height) {

	var win = window.open(url, name, 'width='+width+',height='+height+',scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,menubar=no');

	win.focus();

}

//-->