var PathPrefix = "http://mitomachine/FreeWeb/";
var MIN_FIELD_LENGTH = 0;
	
	

//**********************************************************************************************************/
//*	Escribe una Galleta en el Cliente
//**********************************************************************************************************/
function mandarGalleta(nombre, valor) {
	document.cookie = nombre + "=" + escape(valor); 
}

function Redirect(indice,valor) {
	
	if( indice == 1 ){
		document.ff.action="/bc/bo/buop_browse.asp";
		document.ff.area_code.value = valor;
		document.ff.submit();
	}else{
		if( indice == 2 ){
			document.ff.action="/rc/listproducts.asp";
			document.ff.area_code.value = valor;
			document.ff.submit();
		}
	}
}

function Redirect2(indice) {
	
	if( indice == 1 ){
		document.ff.action="/bc/bo/";
		document.ff.submit();
	}else{
		if( indice == 2 ){
			document.ff.action="/rc/listproducts.asp";
			document.ff.submit();
		}
	}
	
}

//**********************************************************************************************************/
//*	Consulta una Galleta en el Cliente
//**********************************************************************************************************/
function consultarGalleta(nombre) {
	var buscamos = nombre + "=";
	if (document.cookie.length > 0) {
		i = document.cookie.indexOf(buscamos);
		if (i != -1) {
			i += buscamos.length;
			j = document.cookie.indexOf(";", i);
			if (j == -1)
				j = document.cookie.length;
			return unescape(document.cookie.substring(i,j));
		}
	}
}

 


//**********************************************************************************************************/
//*	Salta a una direccion URL
//**********************************************************************************************************/

function SaltarAPagina(pag) {
	location.href = pag;
}


