// JavaScript Document
function resizeImg(IMG, w, h)
{
	var WH = (screen.height - h)/2; 
	var WW = (screen.width - w)/2; 
	
	Imagem = window.open('show_pic.asp?jpg='+IMG,'Imagem', 'width='+w+', height='+h+', scrollbars=0, status=0, dir=0, menubars=0, top='+WH+', left='+WW);
}
function drawPop1()
{
	var WH = (screen.height - 280)/2; 
	var WW = (screen.width - 250)/2; 
	
	Enquete = window.open('pop1.html','Enquete', 'width=250, height=280, scrollbars=0, status=0, dir=0, menubars=0, top='+WH+', left='+WW);
}
function drawPop2(h1, id)
{
	var WH = (screen.height - 280)/2; 
	var WW = (screen.width - 250)/2; 
	
	window.open('pop2.html?h1='+h1+'&id='+id,'Comtários', 'width=250, height=280, scrollbars=0, status=0, dir=0, menubars=0, top='+WH+', left='+WW);
}
