//	POPUP --------------------------------------------------
function pop(a,w,h,t){ 
	l=(screen.width-w)/2; 
	t=(screen.height-h)/2;
	if (t==undefined) t="_blank";
	property="width="+w+",height="+h+",top="+t+",left="+l; 
	var vPopup = window.open(a,t,property);
	if (vPopup == undefined) alert("Não foi possível abrir o pop up.\nVerifique se você não possue um bloqueador de pop up habilitado.");
	vPopup.focus();
}

//	REDIMENSIONAR VENTANA AL CENTRO --------------------------
function resizeWin(w, h) {
	window.resizeTo(w, h);
	window.moveTo((screen.width - w) / 2, (screen.height - (h + 1)) / 2);
}

//	FULLSCREEN ------------------------------------------------
function launchFull(url,name) {
	//alert(name);
	var str = "scrollbars=no,left=0,screenX=0,top=0,screenY=0";

	var ah = (window.screen)?(window.screen.availHeight - 30):770;
	var aw = (window.screen)?(window.screen.availWidth - 10):510;
	str += ",height=" + ah;
	str += ",innerHeight=" + ah;
	str += ",width=" + aw;
	str += ",innerWidth=" + aw;
	str += ",location";
	str += ",resizable";

	ventanaFull = window.open(url, name, str);
	ventanaFull.focus();		
}