function copy(tresc) { 
  window.clipboardData.setData("Text", tresc); 
}

function ulubione() {
  window.external.addFavorite('http://www.twojezyczenia.pl','TwojeZyczenia.pl - kartki elektroniczne, życzenia')
} 

function check_all(){
    for(i=0; i < document.alerts.elements.length; i++) {
         obj = document.alerts.elements[i];
               if(obj.type == 'checkbox') {
			       obj.checked=true;
                }
    }
}

function uncheck_all(){
    for(i=0; i < document.alerts.elements.length; i++) {
         obj = document.alerts.elements[i];
               if(obj.type == 'checkbox') {
			       obj.checked=false;
                }
    }
}

