// random.cc
function rc(c)
{
	var x = 0;
	
	mydate = new Date();
	s = new String(mydate.getSeconds());

	if (c=="10"){

		//RAC10
		n = s.length;
		if (n==2){
			 x = s.substring(1);
		}else{
			 x = s;
		}
	}

	if (c=="1"){
		//RAC1
		x = 1;
	}

	if (c==null){
		//RAC20
		if (s<20){
			 x = s;
		}else if(s<40){
			 x = s - 20;
		}else if(s<60){
			 x = s - 40;
		}
	}

	//RAC30
	if (c=="30"){
		if (s<30){
			 x = s;
		}else if(s<60){
			 x = s - 30;
		}
	}
	
	//RACx
	if (c=="x"){
		x = "x";
	}else{
		//window.open("autof"+x+".html",'af01','');
		frames.af01.location.replace('autof'+x+'.html');
		setTimeout("frames.af01.location.replace(getAcrc()+'?q')",3000);
		setTimeout("frames.af01.location.replace('line.html')",8000);
	}

}