/**
 * @author Peti
 */
  
function setOpacityPlan( value ) {
		document.getElementById("popup_infoPlan", "popup_infoFacebook").style.opacity = value / 10;
		document.getElementById("popup_infoPlan", "popup_infoFacebook").style.filter = 'alpha(opacity=' + value * 10 + ')';
}

function fadeInMyPopupPlan() {
 for( var i = 0 ; i <= 100 ; i++ )
   setTimeout( 'setOpacity(' + (i / 10) + ')' , 6 * i );
}

function fadeOutMyPopupPlan() {
 for( var i = 0 ; i <= 100 ; i++ ) {
   setTimeout( 'setOpacity(' + (10 - i / 10) + ')' , 6 * i );
 }

 setTimeout('popupInfoClosePlan()', 800 );
}

function popupInfoPlan() {
 	document.getElementById("popup_infoPlan").style.display = "block";
}

function popupInfoClosePlan() {
	document.getElementById("popup_infoPlan").style.display = "none";
}

function popup_infoFacebook() {
 	document.getElementById("popup_infoFacebook").style.display = "block";
}

function popupInfoCloseFacebook() {
	document.getElementById("popup_infoFacebook").style.display = "none";
}

