//javascript for popup windows

function popupWin(newURL) {
window.open(newURL,'','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=400,top=0,left=0')
}

