// JavaScript Document
function selctSac(a){
	if(a == 'juridico'){
		document.getElementById('formJuridica').style.display = 'block';
	}else if(a == 'fisico'){
		document.getElementById('formJuridica').style.display = 'none';
		openPopup('http://www.sonystyle.com.br/br/site/information/AskSonyAQuestion.jsp','Contato','470','500', 0, 0 );

	}else{
		document.getElementById('formJuridica').style.display = 'none';
	}
}

function openPopup(sFile, sWindowName, iWidth, iHeight, bStatus, bScrollbars){
	iLeft = (screen.width - iWidth) / 2;
	iTop = (screen.height - iHeight) / 2;

	sFeatures  = 'width=' + iWidth;
	sFeatures += ',height=' + iHeight;
	sFeatures += ',top=' + iTop;
	sFeatures += ',left=' + iLeft;
	sFeatures += ',status=' + bStatus;
	sFeatures += ',scrollbars=' + bScrollbars;

	open( sFile, sWindowName, sFeatures );
}

