var timeout_id

function sd (obj, flag)
{
 if (flag == 1)
 {
   cur_val = document.images[obj].filters.alpha.opacity;
    if (cur_val < 90)
     {
       document.images[obj].filters.alpha.opacity = cur_val + 2;
       str = "sd('"+document.images[obj].id+"',1)";
       timeout_id = setTimeout(str, 10);
     }
 }
 else
 {
   clearTimeout(timeout_id);
   document.images[obj].filters.alpha.opacity = 50;
 }
}

//==============================================================================================//
function addfav()
{
 window.external.addFavorite('http://www.videoservice.com.ua/','Видеосервис');
 return false;
}

//==============================================================================================//
function get_resolution()
{
//	alert (screen.width);
 if (screen.width >= 1280)
 return 1;
 	 
 if (screen.width >= 1024)
 return 2;
 
 if (screen.width == 800)
 return 3;
}

//==============================================================================================//
function is_ie()
{
	var user_agent = navigator.userAgent.toLowerCase();
    //alert (user_agent);	
	if((user_agent.indexOf("msie")!=-1) && (user_agent.indexOf("opera")==-1))
		return true;
	else
		return false;
}
//==============================================================================================//
