<?php
    $stationObj = $_SESSION['stationObj'];
	$tok = strtok($stationObj->GetExternalDataURL(), ";");

	while ($tok !== false) 
	{
		$iheight = "130px";
		
		//
		// If we are using internal URL
		if(substr( $tok, 0, 5 ) === "vedur"){
			$iheight = "260px";
		} 
		
 ?>
<hr class="noDisplay" /> 
<div id="subpage_content_container">
	<div id="subpage_contentarea_top"></div>
	<div id="subpage_contentarea">
		<div style="clear:both"></div>   
		<div id="subpage_newsarea">
			<div class="news_subcontent" id="subnews_content">
				<iframe src="http://<?php echo $tok;?>" width="100%" height="<?php echo $iheight; ?>" scrolling="no"  frameborder="no">
				</iframe>
			</div>
		</div>
	</div>  
	<div id="subpage_contentarea_end"></div> 
</div> 
<?php
		$tok = strtok(";");
	}
?>
