
//requiere
//<script type="text/javascript" src="/Libs/JS/funcsCookies.js"></script>

function ventanaLoginFibertel() {
	
	var width 	= 640;//screen.width * 0.5;
	var height 	= 512;//screen.height * 0.5;
	var left	= (screen.width / 2) - width;
	var top		= (screen.height / 2) - height;

	rollpixCreateCookie('userId', '0', 1, getDomainWithoutWww(), '/');
	
	var properties 	= 'menubar=no,status=no,toolbar=no,scrollbars=no,directories=no,resizable=no,titlebar=no,location=no,height=' + height + ',width=' + width + ',left=' + left + ',top=' + top;
	var url 		= '/MisFotos/acceso_externo_enviar.asp';
	var myWindow 	= window.open(url, '', properties);
}

