// Base utility javascript functions
function openwin(url,width,height){
    window.open(url, 'win', 'width='+width+',height='+height+',resizable=yes,locationbar=no,menubar=no,scrollbars=yes,status=yes,toolbar=no');
}
