

function popUpNormal(URL, width, height){
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "','toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width="+ width + ",height=" + height + ",left = 300,top = 300');");
}

$(document).ready(function() {
   $('div.faq:eq(0)> div').hide();  
   $('div.howto:eq(0)> div').hide();
   $('div.faq:eq(0)> h3').click(function() {
      $(this).next().slideToggle('fast');
   });
   $('div.howto:eq(0)> h3').click(function() {
      $(this).next().slideToggle('fast');
   });
});


