function checkRefreshHomepagerightmodules(){

	
	var hprightModule40	=	document.getElementById('hprightModule40');
	var hprightModule41	=	document.getElementById('hprightModule41');
	var hprightModule42	=	document.getElementById('hprightModule42');
	
	var sp4=0;

	if(hprightModule40) sp4=1;
	if(hprightModule41) sp4=2;
	if(hprightModule42) sp4=3;

	var tmp="hprightModule";
	//A + (B-A)*Math.random()  

//sp4
	for(var i=0;i<sp4;i++)
	{
		tmp="hprightModule4"+i;
		document.getElementById(tmp).style.display="none";

	}	
	var randomnumbersp4=Math.floor(0+(sp4-0)*Math.random());
	tmp="hprightModule4"+randomnumbersp4;
	//alert("sp4: "+sp4 +"  , tmp: "+tmp);	
	document.getElementById(tmp).style.display="";
	

}

