Warning: Cannot modify header information - headers already sent by (output started at /mounted-storage/home50a/sub004/sc34071-SQEX/helsinki-hotelli.info/wp-blog-header.php:25) in /mounted-storage/home50a/sub004/sc34071-SQEX/helsinki-hotelli.info/wp-content/themes/tarski/library/js/tarski-js.php on line 5
// tarski.js - external JS for Tarski
// Default search box text
//-----------------------------------
// event handler
function addEventToObject(obj,evt,func) {
var oldhandler = obj[evt];
obj[evt] = (typeof obj[evt] != 'function') ? func : function(){oldhandler();func();};
}
// search box stuff
var Searchbox = {
init : function()
{
var sBox = document.getElementById('s');
if (sBox)
{
addEventToObject(sBox,'onclick',Searchbox.click);
addEventToObject(sBox,'onblur',Searchbox.blur);
}
},
click : function()
{
var sBox = document.getElementById('s');
if (sBox.value == 'Etsi tästä sivustosta')
{
sBox.value = '';
}
},
blur : function()
{
var sBox = document.getElementById('s');
if (sBox.value == '' || sBox.value == ' ') {sBox.value = 'Etsi tästä sivustosta';}
}
};
// add event onload
addEventToObject(window,'onload',Searchbox.init);