﻿function searchClip()
{
   var keyword = document.getElementById('HeaderCtrl1_txtSearch').value;
   
   if(keyword.length <2 || keyword == '  ')
      return false;
      
   document.location.href = 'http://www.vClips.co.il/Clips/' + encodeURI(keyword);
}

function goToClipPage(clipName)
{    
    document.location.href = 'http://www.vClips.co.il/Clip/' + encodeURI(clipName);
}
function toggleObj(objName)
{
    var obj = document.getElementById(objName);
    
    if(obj.style.display == 'none')
        obj.style.display = 'block';
    else
        obj.style.display = 'none';
        
   return false;
}

function bookmarksite(url,title)
{
    if (window.sidebar) // firefox
	    window.sidebar.addPanel(title, url, "");
	
    else if(window.opera && window.print)
     { // opera
	    var elem = document.createElement('a');
	    elem.setAttribute('href',url);
	    elem.setAttribute('title',title);
	    elem.setAttribute('rel','sidebar');
	    elem.click();
    } 
    else if(document.all)// ie
	    window.external.AddFavorite(url, title);
	
	return false;
}

