<?php 
$id_menu = 19;
include ("header.php"); ?>
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
           
    <?php include ("common_in_head.php"); ?> 
           
</head>
<body>    
    <div class="container">

        <?php include('menu.php'); ?>
        
        <div class="content_holder">                
            
            <div class="gradient"></div>
            
            <div class="content_inner">
                <div class="resize_content" id="resize_content">
                    
                    <section class="content">
                    
                        <header class="page_title">
                            registration / questionnaire
                            <div class="title_line"></div>
                            <div class="download_buttons">
                                <a href="<?php echo $websiteURL ?>pdf/registration_form.pdf" target="_blank" class="download_link">Download Pdf<img src="<?php echo $websiteURL ?>images/download_arrow.png"/></a>
                            </div>
                        </header>
                        
                        <div class="tabbed_content">
                            
                            <?php
							if (isset($_SESSION[$sessionName.'form_reply']))
							{
								$reply_flag = $_SESSION[$sessionName.'form_reply'];
								echo '<div class="message">';
									if ($reply_flag==1)
										echo $trans_formAns_career[$lang];  
									else if ($reply_flag==2)
										echo $trans_formReply_email[$lang];  
									else if ($reply_flag==3)
										echo $trans_formReply_wrongCode[$lang];  
									else if ($reply_flag==4)
										echo $trans_formReply_notSent[$lang]; 
								echo '</div>';
							}
							?>
                                            
                            <form id="RegistrationForm" action="mail_send.php" method="post">
                                <input type="hidden" name="back" value="<?php echo $websiteURL.$link_ext.$pagename; ?>" />
                                <input type="hidden" name="subject" value="<?php echo $websiteTitle." - ".$page_title; ?>" />
                                <input type="hidden" name="replyMessage" value="<?php echo $trans_formAns_request[$lang]; ?>" />
                                <input type="hidden" name="temp_lang" value="<?php echo $lang; ?>" />
                                <input type="hidden" id="addTrackCode" value="" />
                                <input type="text" id="check" value="" style="display:none" />
                                
                                <div class="form"> 
                                    <?php 
                                    include('inc_step1.php');
                                    include('inc_step2.php');
                                    include('inc_step3.php');
                                    include('inc_step4.php'); 
                                    include('inc_step5.php'); 
                                    ?>                                                                                                                                            
                                    <br clear="all"/>
                                                                       
                                </div>                                                        
                            </form> 
                            
                        </div>                       
                        
                    </section>
                </div>
                
                <?php include('footer.php'); ?>
                
            </div>                   
        </div>           
    </div>
</body>
</html>
<?php include ("bottom.php"); ?>