function windowopen(url,tit,w,h)
{
    myWin = window.open(url,tit,'width='+w+',height='+h+',left=50,top=50,resizable=yes,titlebar=yes,scrollbars=no,menubar=no');
}
    
function wp(id)
{
    myWin = window.open('wunschpreis.php?Asin='+id,'Wunschpreis','width=450,height=355,left=50,top=50,resizable=yes,titlebar=yes,scrollbars=yes,menubar=no');
}
	

$(document).ready(function() {


$('.blockheader + .blockbody').hide();

$('.blockheader').click(function () {
    $(this).next('div .blockbody').slideToggle();
});
    
$('#searchbox .inputtextgray').click(function() {
 $(this).removeClass('inputtextgray');
 $(this).addClass('inputtext');
 $(this).val('');
});

})

function getWW() {
    var de = document.documentElement;
    return window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
}
function getHH() {
    var de = document.documentElement;
    return window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
}
        
