﻿//	REDIMENCIONAR VENTANA AL CENTRO --------------------------
function resizeWin(w, h) {
	window.moveTo((screen.width - w) / 2, (screen.height - (h + 28)) / 2);
	window.resizeTo(w, h);
}

function enfocarFlash(){
	if (document.all || navigator.userAgent.indexOf("Safari")!= -1 ){
		var oFlash = document.getElementById('objectFlash');
		if (oFlash != undefined) oFlash.focus();
	}
}