function enqueteZT(url,formulario) {

	for (a = 0; a < formulario.elements.length; a++) {
	if (formulario.elements[a].type == "radio" && formulario.elements[a].checked == 1) {
		url = url+"&resposta="+formulario.elements[a].value;
		break;
		}
	}
	popcont.innerHTML = '' +
		'<div id="popupInner">' +
				'<iframe src="' + URL + 'load.html" style="width:100%;height:100%;background-color:transparent;" scrolling="auto" frameborder="0" allowtransparency="true" id="popupFrame" name="popupFrame" width="100%" height="100%"></iframe>' +
		'</div>';
	theBody.appendChild(popmask);
	theBody.appendChild(popcont);
	gPopupMask = document.getElementById("popupMask");
	gPopupContainer = document.getElementById("popupContainer");
	gPopFrame = document.getElementById("popupFrame");	
	var brsVersion = parseInt(window.navigator.appVersion.charAt(0), 10);
	if (brsVersion <= 6 && window.navigator.userAgent.indexOf("MSIE") > -1) {
		gHideSelects = true;
	}
	showPopWin(url, 500, 500,null,true);
	//window.open(url,'Resultado','width=300,height=350,resizable=no,menubar=no,toolbars=no,scrollbars=no,resizable=no');
}

function controle() {
alert('testando javascript');
}

