// JavaScript Document



function popup(page, w, h)
{		
   //dimensiuni fereastra (se poate modifica sau parametriza) si pozitionare centrat
	var height = h;
	var width = w;
	var left = (screen.availWidth - width)/2;
	var top = (screen.availHeight - height)/2;
	if (window.showModalDialog) //suporta modal
	{
		var dialogArguments = new Object();
		var _R = window.showModalDialog(page, "", "dialogWidth="+width+"px;dialogHeight="+height+"px;scroll=no;status=no;");
		
	}		
	else	//nu suporta modal
	{  	
		var left = (screen.width-width)/2;
		var top = (screen.height-height)/2;
 		winHandle = window.open(page, page, "modal,toolbar=false,location=false,directories=false,status=false,menubar=false,scrollbars=no,resizable=no,left="+left+",top="+top+",width="+width+",height="+height);
		winHandle.focus();
	}
	return false;
}
