// JavaScript Document
function popUpCenteredWindow(l,w,h) {
var iMyWidth;
var iMyHeight;
iMyWidth = (window.screen.width/2) ;
iMyHeight = (window.screen.height/2);
var win2 = window.open(l,"Detalii","status,height="+(h+35)+",width="+(w+35)+",resizable=no, left=0, top=0, screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
win2.focus();
}

