function download(str){searchWin = window.open(str,'download','scrollbars=no,resizable=yes,width=550,height=325,status=no,location=no,toolbar=no');}
function view( targetId ){
if (document.getElementById){
target = document.getElementById( targetId );
if (target.style.display == "none"){
target.style.display = "block";
} else {
target.style.display = "none";
}
}
}