function getLink(PAGE) {
	left.location.href = PAGE + '_menu.php';
	content.location.href = PAGE + '.html';
	//right.location.href = PAGE + '_right.html';
	right.location.href = 'right.php';
}

function getLinkDyn(PAGE) {
	left.location.href = 'left.php?CONTENT=' + PAGE;
	content.location.href = PAGE + '.php';
	//right.location.href = PAGE + '_right.html';
	right.location.href = 'right.php';
}

function getLinkFromFrame(PAGE) {
	parent.content.location.href = PAGE + '.php';
	//right.location.href = PAGE + '_right.html';
	parent.right.location.href = 'right.php';
}

function getNews(ID_NEW) {
	left.location.href = 'left.php';
	content.location.href = 'NEWS.php?id_new=' + ID_NEW;
	right.location.href = 'right.php';
}

