function rnd_mov(m,k)
	{
	ar=new Array();
	for (i=1; i<m+1; i++)
		{
		ex=0;
		while(ex==0) 
			{
			n = 0;
			n = parseInt(Math.random() * k);
			ar[i]=n;
			ex=1;
			for (j=1; j<m; j++)
				{
				if(ar[i]==ar[i-j]) ex=0;				
				}
			}
		}
	}
	
function mov1(n)
	{
		document.write('<img src=http://prev.central-xxx.com/g/mov/'+ar[n]+'.jpg width=110 height=140 class="imprbor" alt="Young Boys video">');	
	}	
	
function rnd_pic(m,k)
	{
	ar2=new Array();
	for (i=1; i<m+1; i++)
		{
		ex=0;
		while(ex==0) 
			{
			n = 0;
			n = parseInt(Math.random() * k);
			ar2[i]=n;
			ex=1;
			for (j=1; j<m; j++)
				{
				if(ar2[i]==ar2[i-j]) ex=0;				
				}
			}
		}
	}
	
function pic1(n)
	{
		document.write('<img src="http://prev.central-xxx.com/g/pic/'+ar2[n]+'.jpg" width=110 height=140 class="imprbor" alt="Teen Boys pics">');	
	}	

