function show_part_form()
 {
    fireMyPopup_part();
 }
 // Browser safe opacity handling function
 
function setOpacity_part( value ) {
 document.getElementById("popup_part_enroll").style.opacity = value / 10;
 document.getElementById("popup_part_enroll").style.filter = 'alpha(opacity=' + value * 10 + ')';
}

function fadeInMyPopup_part() {
 for( var i = 0 ; i <= 100 ; i++ )
   setTimeout( 'setOpacity_part(' + (i / 10) + ')' , 8 * i );
}

function fadeOutMyPopup_part() {
 for( var i = 0 ; i <= 100 ; i++ ) {
   setTimeout( 'setOpacity_part(' + (10 - i / 10) + ')' , 8 * i );
 }

 setTimeout('closeMyPopup_part()', 800 );
}

function closeMyPopup_part() {
 document.getElementById("popup_part_enroll").style.display = "none";
}

function fireMyPopup_part() {
 setOpacity_part( 0 );
 document.getElementById("popup_part_enroll").style.display = "block";
 fadeInMyPopup_part();
}


function show_build_form()
 {
    fireMyPopup_bulid();
 }
 // Browser safe opacity handling function

 
 
 
function setOpacity_bulid( value ) {
 document.getElementById("popup_build_enroll").style.opacity = value / 10;
 document.getElementById("popup_build_enroll").style.filter = 'alpha(opacity=' + value * 10 + ')';
}

function fadeInMyPopup_bulid() {
 for( var i = 0 ; i <= 100 ; i++ )
   setTimeout( 'setOpacity_bulid(' + (i / 10) + ')' , 8 * i );
}

function fadeOutMyPopup_bulid() {
 for( var i = 0 ; i <= 100 ; i++ ) {
   setTimeout( 'setOpacity_bulid(' + (10 - i / 10) + ')' , 8 * i );
 }

 setTimeout('closeMyPopup_bulid()', 800 );
}

function closeMyPopup_bulid() {
 document.getElementById("popup_build_enroll").style.display = "none";
}

function fireMyPopup_bulid() {
 setOpacity_bulid( 0 );
 document.getElementById("popup_build_enroll").style.display = "block";
 fadeInMyPopup_bulid();
}

