function manageattachments(url, width, height, hash)
{
 window.open(url, "Attach" + hash, "statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
 return false;
}

function show()
{

if (searchdiv.style.display == 'none'){
searchdiv.style.display='';
searchdiv.style.left=event.clientX+document.body.scrollLeft-200;
searchdiv.style.top=event.clientY+document.body.scrollTop+25;
 return false;
}else{
searchdiv.style.display='none';
 return false;
}

}