function popUp(URL,w,h) {
var atts='toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,left = 10,top = 10,';
atts+='width='+w+',';
atts+='height='+h;
window.open(URL, 'popUpWindow', atts);
}
