function popUp(url,name,width,height) {

//NEW popUP
leftPos = (screen.availWidth-width);
topPos = 0;//(screen.availHeight-height)/2;
var strOptions = 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width='+width+',height='+screen.availHeight+',left='+ leftPos + ',top=' + topPos ;
window.open(url ,name, strOptions);

return false;
}
