// JavaScript Document
function fnc_valid_Id(strID,strPwd){
	var cols,rows,count,return_value;
	var arr_Ids=new Array(rows);
	var arr_Pwds=new Array(cols);

	rows = 4;
	cols = 4;
	count = 0;
	return_value = false;

	// ***** ASSIGNACIÓ IDENTIFICADORS I PARAULES DE PÀS ****
	arr_Ids[0] = "copiador"; arr_Pwds[0] = "macro";
	
	//*******************************************************
	
	while(count < rows){
		if(arr_Ids[count] == strID && arr_Pwds[count] == strPwd ){
		return_value = true;
		break;
		}
		count = count + 1;
	}
	return return_value;
}

function fnc_check_pwd(strID,strPwd){
	if (fnc_valid_Id(strID,strPwd)){
		Lay_pdfs.style.visibility = 'visible';
		div_formulari.style.visibility = 'hidden';
	}else{
		alert('invalid');
	}
}

function fnc_Ini_divs(){
	Lay_pdfs.style.visibility = 'hidden';
	div_formulari.style.visibility = 'visible';

}


