284 lines
11 KiB
PHP
Executable File
284 lines
11 KiB
PHP
Executable File
<?php
|
||
global $_LANG,$_CMDS,$_DOC_ROOT,$_MENU,$_WORDS,$_CONFIG,$_PATH_PREFIX;
|
||
?>
|
||
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<head>
|
||
<title>Pro Active English</title>
|
||
<link href='/pae.co.at/pae.css' type='text/css' rel='stylesheet' />
|
||
<meta type='keywords' content='Business English Vienna, English Training, Wirtschaftsenglisch, Geschäftsenglisch Wien,
|
||
Englischkurse Wien, Englischtraining Wien, Englischkurse, Business Englisch Wien, Sprachkurse, Sprachschule Wien,
|
||
Sprachinstitut, Maßgeschneiderte Englischkurse, Allgemeinessenglisch, Englisch, Finanzenglisch, Präsentationsenglisch,
|
||
Fachenglisch, Spezialisierte Kurse, Englisch für Anfänger, Englisch für fortgeschrittene, English für Manager,
|
||
Firmeninternes Training, Intensivenglischkurs, Business Crash, Language of Meetings and Discussions, Office Communication,
|
||
Business English Vienna, Custom Courses, General English, one-on-one training for management, in-house training,
|
||
English for Presentations, Sales & Negotiations, Emailing & Telephoning, Human Resources, Finance, Medicine, Law' />
|
||
<meta type='description' content='Welcome To Pro Active English.
|
||
We provide English Language training of the highest quality to a wide
|
||
variety of corporate and private clients.
|
||
We draw on the latest teaching styles and methodologies available today.
|
||
This occurs in small groups or on a one-to-one basis.
|
||
We offer in-company training as well as public courses andcourses.' lang='en' xml:lang='en' />
|
||
<meta type='description' content='Wilkommen bei Pro Active English.
|
||
Wir bieten Englischtrainings höchster Qualität für die verschiedensten
|
||
Firmen- und Privatkunden.
|
||
Unsere Unterrichtsformen und –methoden sind stets aktuell und auf dem
|
||
neuesten Stand.
|
||
Trainings erfolgen entweder in Kleingruppen oder in Form von
|
||
Einzelunterricht.
|
||
Unser Angebot umfasst sowohl firmeninterne Trainings als auch allgemein
|
||
zugängliche Kurse und Kurse.' lang='de' xml:lang='de' />
|
||
<script language='javascript' type='text/javascript'>
|
||
<?php include $_DOC_ROOT.'/html/js_pae.php'; ?>
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id='main' align='left'>
|
||
<!--BEGIN HEADER-->
|
||
<div id='top_line'><img src='/pae.co.at/graphics/spacer.gif' height='30' /></div>
|
||
<div id='top_swoop'>
|
||
<?php echo html_get_login_message(); ?>
|
||
<img src='/pae.co.at/graphics/spacer.gif' height='30' align='top' />
|
||
</div>
|
||
<div id='logo'>
|
||
<table cellpadding='0' cellspacing='0' border='0'>
|
||
<tr>
|
||
<td valign='bottom'><img src='/pae.co.at/graphics/logos/logo_pae-small2.gif' /></td>
|
||
<td width='12'> </td>
|
||
<td valign='bottom'><img src='/pae.co.at/graphics/logos/running_man-small.gif' /></td>
|
||
<td width='4'> </td>
|
||
<td valign='bottom'><img src='/pae.co.at/graphics/logos/slogan.gif' /></td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div id='beige_line'><img src='/pae.co.at/graphics/spacer.gif' height='10' /></div>
|
||
<div id='bottom_line'><img src='/pae.co.at/graphics/spacer.gif' height='34' /></div>
|
||
<div id='bottom_swoop'>
|
||
<?php
|
||
$whoarewe_img = "/graphics/buttons/{$_LANG}_whoarewe";
|
||
$whatdowedo_img = "/graphics/buttons/{$_LANG}_whatdowedo";
|
||
$howdowedoit_img = "/graphics/buttons/{$_LANG}_howdowedoit";
|
||
$where_img = "/graphics/buttons/{$_LANG}_where";
|
||
|
||
$whoarewe_js = "onmouseover='Swap(this,1)' onmouseout='Swap(this,0)'";
|
||
$whatdowedo_js = "onmouseover='Swap(this,1)' onmouseout='Swap(this,0)'";
|
||
$howdowedoit_js = "onmouseover='Swap(this,1)' onmouseout='Swap(this,0)'";
|
||
$where_js = "onmouseover='Swap(this,1)' onmouseout='Swap(this,0)'";
|
||
|
||
switch($_CMDS['query'][0]) {
|
||
case 'trainer':
|
||
case 'whoarewe':
|
||
$whoarewe_img .= '2';
|
||
$whoarewe_js = '';
|
||
break;
|
||
case 'course':
|
||
case 'whatdowedo':
|
||
$whatdowedo_img .= '2';
|
||
$whatdowedo_js = '';
|
||
break;
|
||
case 'coursestructure':
|
||
case 'methodology':
|
||
case 'howdowedoit':
|
||
$howdowedoit_img .= '2';
|
||
$howdowedoit_js = '';
|
||
break;
|
||
case 'where':
|
||
$where_img .= '2';
|
||
$where_js = '';
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
$whoarewe_img .= '.jpg';
|
||
$whatdowedo_img .= '.jpg';
|
||
$howdowedoit_img .= '.jpg';
|
||
$where_img .= '.jpg';
|
||
|
||
list($whoarewe_h) = getimagesize($_DOC_ROOT.$whoarewe_img);
|
||
list($whatdowedo_h) = getimagesize($_DOC_ROOT.$whatdowedo_img);
|
||
list($howdowedoit_h) = getimagesize($_DOC_ROOT.$howdowedoit_img);
|
||
list($where_h) = getimagesize($_DOC_ROOT.$where_img);
|
||
?>
|
||
<table cellpadding='0' cellspacing='0' border='0' width='100%'>
|
||
<tr>
|
||
<td width='<?php echo $whoarewe_h ?>'>
|
||
<a href='<?php echo "$_PATH_PREFIX/$_LANG/display/whoarewe" ?>'>
|
||
<img src='<?php echo '/pae.co.at/'.$whoarewe_img ?>' id='whoarewe_btn' name='whoarewe_btn'
|
||
<?php echo $whoarewe_js ?> border='0' /></a>
|
||
</td>
|
||
<td width='<?php echo $whatdowedo_h ?>'>
|
||
<a href='<?php echo "$_PATH_PREFIX/$_LANG/display/whatdowedo" ?>'>
|
||
<img src='<?php echo '/pae.co.at/'.$whatdowedo_img ?>' id='whatdowedo_btn' name='whatdowedo_btn'
|
||
<?php echo $whatdowedo_js ?> border='0' /></a>
|
||
</td>
|
||
<td width='<?php echo $howdowedoit_h ?>'>
|
||
<a href='<?php echo "$_PATH_PREFIX/$_LANG/display/howdowedoit" ?>'>
|
||
<img src='<?php echo '/pae.co.at/'.$howdowedoit_img ?>' id='howdowedoit_btn' name='howdowedoit_btn'
|
||
<?php echo $howdowedoit_js ?> border='0' /></a>
|
||
</td>
|
||
<td width='<?php echo $where_h ?>'>
|
||
<a href='<?php echo "$_PATH_PREFIX/$_LANG/display/where" ?>'>
|
||
<img src='<?php echo '/pae.co.at/'.$where_img ?>' id='where_btn' name='where_btn'
|
||
<?php echo $where_js ?> border='0' /></a>
|
||
</td>
|
||
<td valign='absmiddle' align='right'>
|
||
<?php echo html_get_lang_select(); ?>
|
||
<br />
|
||
<img src='/pae.co.at/graphics/spacer.gif' height='9' />
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<!--END HEADER-->
|
||
<div id='page'>
|
||
<table cellpadding='0' cellspacing='0' border='0'>
|
||
<tr>
|
||
<!--BEGIN BOXES-->
|
||
<td id='page_left'>
|
||
<table cellpadding='0' cellspacing='0' border='0'>
|
||
<tr>
|
||
<td class='box_content'>
|
||
<div class='box_header'><?php echo $_MENU['menu'] ?></div>
|
||
<?php
|
||
$menu_items = array('home','newcourses','prices','events',
|
||
'references','subsidies','translations','links','directions');
|
||
|
||
foreach($menu_items as $item) {
|
||
$bold = '';
|
||
if($_CMDS['query'][0] == $item) {
|
||
$bold = " style='font-weight:bold'";
|
||
}
|
||
$link = "{$_PATH_PREFIX}/{$_LANG}/display/{$item}";
|
||
if($item == 'directions')
|
||
{ $link = "http://www.firmenabc.at/pro-active-english_DdEs"; }
|
||
|
||
print "
|
||
> <a href='$link' class='sub_menu_link'{$bold}>
|
||
{$_MENU[$item]}</a>
|
||
<br />";
|
||
}
|
||
?>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td class='box_content'>
|
||
<div class='box_header'>
|
||
<?php echo $_MENU['contact'] ?>
|
||
</div>
|
||
<?php echo $_WORDS['phone'] ?>: +43 1 665 0989 0
|
||
<br />
|
||
<?php echo $_WORDS['email'] ?>: <a href='mailto:Office@pae.co.at' class='blue_bg'>Office@pae.co.at</a>
|
||
<br /> <br />
|
||
> <a href='<?php echo "$_PATH_PREFIX/$_LANG/display/contact" ?>' class='blue_bg'>
|
||
<?php echo $_WORDS['morecontact'] ?>
|
||
</a>
|
||
</td>
|
||
</tr>
|
||
<?php
|
||
if($_CMDS['cmd'] == 'display') {
|
||
switch($_CMDS['query'][0]) {
|
||
case 'contact':
|
||
case 'where':
|
||
case 'seminars':
|
||
case 'schedule':
|
||
case 'subsidies':
|
||
case 'impressum':
|
||
case 'prices':
|
||
case 'events':
|
||
case 'translations':
|
||
break;
|
||
default:
|
||
?>
|
||
<tr>
|
||
<td class='box_content'>
|
||
<div class='box_header'><?php echo html_get_page_title() ?></div>
|
||
<?php echo html_get_page_outline() ?>
|
||
</td>
|
||
</tr>
|
||
<?php
|
||
}
|
||
}
|
||
?>
|
||
<tr>
|
||
<td class='box_picture'>
|
||
<?php
|
||
if($_CMDS['cmd'] == 'display') {
|
||
switch($_CMDS['query'][0]) {
|
||
case 'home':
|
||
print "<img src='/pae.co.at/graphics/pictures/sidecolumn/P1010389_2.jpg' width='205' border='0' />";
|
||
break;
|
||
default:
|
||
print "<img src='/pae.co.at/graphics/pictures/sidecolumn/";
|
||
print html_get_random_img($_CONFIG['sidecolumn_dir']);
|
||
print "' width='205' />";
|
||
break;
|
||
}
|
||
}
|
||
?>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
<!--END BOXES-->
|
||
<td id='page_middle'> </td>
|
||
<!--BEGIN CONTENT-->
|
||
<td id='page_main' valign='top'>
|
||
<?php
|
||
if($_CMDS['cmd'] == 'display' && $_CMDS['query'][0] == 'home'):
|
||
if($_LANG == 'en'):
|
||
?>
|
||
|
||
<div class='page_subtitle'>We’re moving to the 1st District!</div>
|
||
<div class='page_content'>
|
||
<p>
|
||
As of the first of August we will be moving to Trattnerhof 2. Our objective
|
||
in doing so is to provide our clients with a wide range of specialized public
|
||
courses. Please click below to view the courses being offered.
|
||
<a href='/en/display/moveannouncement' title='Move announcement'>Read more</a>.
|
||
</p>
|
||
<p>
|
||
<strong><a href='/pae.php/en/display/newcourses' title='Courses being offered'>SUMMER COURSES – SPECIAL OFFER – 25% OFF IN AUGUST AND SEPTEMBER!!</a></strong>
|
||
</p>
|
||
</div>
|
||
|
||
<?php elseif($_LANG == 'de'): ?>
|
||
|
||
<div class='page_subtitle'>Wir siedeln in den 1.Bezirk!</div>
|
||
<div class='page_content'>
|
||
<p>
|
||
Mit erstem August beziehen wir unsere neuen Räume im Trattnerhof 2, wo
|
||
wir unseren Kunden auch eine große Auswahl an öffentlichen Kursen anbieten.
|
||
<a href='/de/display/moveannouncement' title='Move announcement'>Mehr lesen</a>.
|
||
</p>
|
||
<p>
|
||
<strong><a href='/pae.php/de/display/newcourses' title='Kursangebot'>SOMMERKURSE –AKTION – MINUS 25% IM AUGUST UND SEPTEMBER 2008</a></strong>
|
||
</p>
|
||
</div>
|
||
<?php endif; endif;
|
||
if($_CMDS['cmd'] == 'display') {
|
||
switch($_CMDS['query'][0]) {
|
||
case 'home':
|
||
print "<div id='page_picture'>";
|
||
if($_LANG == 'en')
|
||
print "Click on the picture below to watch a short film.";
|
||
else
|
||
print "Klicken Sie auf diesen Photo um einen kurzen Film anzuschauen.";
|
||
print "<br /><a href='http://www.firmenabc.at/pro-active-english_DdEs'><img src='/pae.co.at/graphics/pictures/panoramas/Graben3.jpg' width='575' border='0' /></a>";
|
||
print "</div>";
|
||
break;
|
||
case 'whoarewe':
|
||
case 'trainer':
|
||
case 'schedule':
|
||
break;
|
||
default:
|
||
print "<div id='page_picture'>";
|
||
print "<img src='/pae.co.at/graphics/pictures/panoramas/";
|
||
print html_get_random_img($_CONFIG['panorama_dir']);
|
||
print "' width='575' />";
|
||
print "</div>";
|
||
break;
|
||
}
|
||
}
|
||
?>
|