function email(id, site){
	window.open("/site/modulos/site/email.php?id="+id,"popNoticiaEmail","width=500, height=180, top=10, left=10");
}

function imprimir(id, site){
	window.open("/site/modulos/site/imprimir.php?id="+id,"popNoticiaImprimir","width=600, height=400, top=10, left=10, scrollbars=yes");
}

function popup(){
	var largura = 320;
	var altura = 240;
	var LeftPosition = (screen.width) ?	(screen.width-largura)/2 : 0;
	var TopPosition = (screen.height) ?	(screen.height-altura)/2 : 0;	

	window.open("./banner/","","resizable=no,menubar=no,statusbar=no,toolsbar=no,scrollbars=no,width="+largura+",height="+altura+",left="+LeftPosition+",top="+TopPosition+"");
}