/*
* ferestre Pop up, diverse tipuri
*/
function popUp(popUpURL, popUpName, popUpWidth, popUpHeight) {
	var popUpParamString = "";	
	if(popUpName == "fix"){//Large solid, fara scrollbars
		if(popUpHeight == ""){
			popUpHeight = 180;
		}		
		if(popUpWidth == ""){
			popUpWidth = 200;
		}
		popUpParamString = "menubar=0,location=0,toolbar=0,status=0,resizable=0,scrollbars=no,dependent=1,height=" + popUpHeight +",width=" + popUpWidth;
	}	
	else {//cu scrollbaruri 
		if(popUpHeight == ""){
			popUpHeight = 600;
		}		
		if(popUpWidth == ""){
			popUpWidth = 700;
		}
		popUpParamString = "menubar=0,location=0,toolbar=0,status=0,resizable=1,dependent=1,scrollbars=yes,height=" + popUpHeight +",width=" + popUpWidth;
	}	
	window.open(popUpURL,popUpName,popUpParamString);
}