/* functii pentru deschiderea de ferestre modale
   - se includ in ferestrele care se deschid */

function init()
{
	if( window.opener != null )
	{
		var parentBody = window.opener.document.body;
		parentBody.style.filter = "alpha(opacity=50)";
		try
		{
			parentBody.style.cursor = "not-allowed";    //acest style este pentru MSIE minim ver 6
		}
		catch( e ){}
		parentBody.setCapture();
	}
}

function bodyOnBlur()
{
	var activeElement = window.document.activeElement;

	if( activeElement.tagName != "BODY" )
	{	
		if( !document.hasFocus() )
			window.focus();
		else
			activeElement.focus();
	}
}
/*
if( window.opener != null && typeof( window.opener.childWin ) != "undefined" )
{
	init();

	window.onblur = bodyOnBlur;
}
*/
