function checkIfInClipboard(){
	window.URL.getHashTable();
	var id_term = window.URL.hashTable['id_terminy'];
	if(!id_term){
		id_term = window.URL.searchTable['id_terminy'];
	}


	var idOfertyIdBiura = document.location.href.match(/([0-9]{1,},[0-9]{1,})(\.html)/)[1].split(',');
	var id_biura=idOfertyIdBiura[1];

	if (document.getElementById('dodaj_do_schowka') && document.getElementById('dodaj_do_schowka_selected')) {
	if(clipboardTest(id_term,id_biura)){
		document.getElementById('dodaj_do_schowka').style.display='block';
		document.getElementById('dodaj_do_schowka_selected').style.display='none';
	}else{
		document.getElementById('dodaj_do_schowka_selected').style.display='block';
		document.getElementById('dodaj_do_schowka').style.display='none';
	}
	}
}

if(window.addEventListener){
	window.addEventListener('load', checkIfInClipboard, false);
}
else if(document.addEventListener){
	document.addEventListener('load', checkIfInClipboard, false);
}
else if(window.attachEvent){
	window.attachEvent('onload', checkIfInClipboard);
}
