
function makeNFooter(c1,c2){
	var html = "";
	//columna #1
	html += "<div  class='contact'>";
	html += "<span style='color:"+c1+"'>Contact.</span><br/>";
	html += "</div>";
	//columna #2
	html += "<div  class='contact'>";
	html += "<span style='color:"+c1+"'>"+contact[0].line1+"</span><br/>";
	html += "<span style='color:"+c2+"'>"+contact[0].line2+"</span>";
	html += "</div>";
	//columna #3
	html += "<div  class='contact'>";
	html += "<span style='color:"+c1+"'>"+contact[1].line1+"</span><br/>";
	html += "<span style='color:"+c2+"'>"+contact[1].line2+"</span>";
	html += "</div>";
	//
	$("#newsfooter").html(html);
}
function reposShapeTextBox(){
	var top = $("#newspagetext").height()+120;
	$("#shapeTextBox").css({top:top});	
}
function NshareIkRollOver(){
	$("#NshareIkOn").css({opacity:1});
	$("#NshareIkOff").css({opacity:0});
}
function NshareIkRollOut(){
	$("#NshareIkOn").css({opacity:0});
	$("#NshareIkOff").css({opacity:1});
}
function setHeightNewsPage(num){
	reposFooter((num+$("#newspagetext").height()+120+120));
}
function controlNewsBack(){
	if(globalHISTORY[(globalHISTORY.length-2)] == ""){
		$("#newsback").attr("href","/#")
	}	
}
