27 lines
648 B
PHP
27 lines
648 B
PHP
<?php
|
|
|
|
include 'php/classes/page.php';
|
|
|
|
$page = new Page();
|
|
|
|
$page->attr('title','Travel Insurance');
|
|
$page->layout('iframe_layout.php');
|
|
|
|
$iframeSrc = '';
|
|
switch(isset($_GET['type']) ? $_GET['type'] : '')
|
|
{
|
|
case 'cruisett':
|
|
$iframeSrc = 'http://www.travelguard.com/agentlink.asp?ta_arc=24590171&header=false&sitecolor=778899&pcode=005600';
|
|
break;
|
|
case 'protectassist':
|
|
$iframeSrc = 'http://www.travelguard.com/agentlink.asp?ta_arc=24590171&header=false&sitecolor=778899&pcode=005700';
|
|
break;
|
|
default:
|
|
header('Location: linksandnumbers.php?id=4');
|
|
break;
|
|
}
|
|
$page->data('iframe_src', $iframeSrc);
|
|
|
|
$page->process();
|
|
|
|
?>
|