<!--
function dataPopup(url,br,ho) {
var win=null;
LeftPos=(screen.width)?(screen.width-br)/2:100;
TopPos=(screen.height)?(screen.height-ho)/2:50;
setting='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=0,'
setting+='width='+br+',height='+ho+',left='+LeftPos+',top='+TopPos+',resizable=1' 
win = window.open(url,"",setting);
}

function formPopup(url,br,ho) {
var win=null;
LeftPos=(screen.width)?(screen.width-br)/2:100;
TopPos=(screen.height)?(screen.height-ho)/2:50;
setting='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,'
setting+='width='+br+',height='+ho+',left='+LeftPos+',top='+TopPos+',resizable=1' 
win = window.open(url,"",setting);
}



// -->

