
<!-- inicio

var tot_frames = 3;
var links = new MakeStringArray(tot_frames);
var tot_frame = 3;


// grupo 0 ------------------------------------PAGINA INICIO 
links[1] = "fr/fr01.htm";
links[2] = "fr/fr02.htm";
links[3] = "fr/fr03.htm";


function MakeStringArray(n) 
		{ this.length = n; 
				for (var i = 1; i<=n; i++) 
						{ this[i] = new String() } 
		return this } 

function framesgrupo(n) 
		{
                 random_frame = 0;
                 random_frame = Math.ceil(Math.random()*(tot_frame)) + (n*tot_frame);
                 the_frames = '<SCRIPT LANGUAGE="JavaScript">location.href = "'+links[random_frame]+'";</SCRIPT>';
//                 document.write(random_frame-(n*tot_frame));  
                 document.write(the_frames);

		
                } 



// fin -->

