function PopUp(url, height, width)
{
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
	window.open(url, null, 'width=' + width + ', height=' + height + ', left=' + x + ', top=' + y + ',status=0,toolbar=0,menubar=0,location=0');
}

function PopUpNome(url, nome , height, width)
{
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
	window.open(url, nome, 'width=' + width + ', height=' + height + ', left=' + x + ', top=' + y + ',status=0,toolbar=0,menubar=0,location=0');
}

function PopUpScroll(url, nome, height, width, scroll)
{
	var x = (screen.width - width)/2;
	var y = (screen.height - height)/2;
	window.open(url, nome, 'width=' + width + ', height=' + height + ', left=' + x + ', top=' + y + ',status=1,toolbar=0,menubar=0,location=0,scrollbars=' + scroll);
}