2011-12-12 21:09:18 +00:00
|
|
|
function imgblur(pos){
|
2011-12-12 19:10:49 +00:00
|
|
|
if (document.getElementById('watermark').value == "") {
|
2011-12-12 21:09:18 +00:00
|
|
|
document.getElementById('watermark').style.background="white url('/static/images/google_watermark.gif') no-repeat "+pos+"px center";
|
2011-12-12 19:10:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function imgfocus(){
|
|
|
|
document.getElementById('watermark').style.background="";
|
|
|
|
}
|
2011-12-13 18:32:29 +00:00
|
|
|
|
|
|
|
// special case for search box which is repeated on empty search results page
|
|
|
|
function imgblurempty(pos){
|
|
|
|
if (document.getElementById('watermarkempty').value == "") {
|
|
|
|
document.getElementById('watermarkempty').style.background="white url('/static/images/google_watermark.gif') no-repeat "+pos+"px center";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function imgfocusempty(){
|
|
|
|
document.getElementById('watermarkempty').style.background="";
|
|
|
|
}
|