
function newWin(URL){
newWindow = window.open(URL,"newWindow","resizable=yes,scrollbars=yes,width=560,height=325");
}

function CloseWin(){
    window.close();
}