function rok_isIe7() {
$agent=$_SERVER['HTTP_USER_AGENT'];
if (stristr($agent, 'msie 7')) return true;
return false;
}
function rok_isIe6() {
$agent=$_SERVER['HTTP_USER_AGENT'];
if (stristr($agent, 'msie 6')) return true;
return false;
}
<?php if (rok_isIe7()) :?>
<!--[if gte IE 7]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/template_ie7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<?php endif; ?>
<?php if (rok_isIe6()) :?>
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/template_ie6.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!-- Graf remove png fix for headerimage (DONT WORRY ABOUT THIS PART-->
</style>
<![endif]-->
<?php endif; ?>
<!-- Graf conditional Call -->
<!--[if gte IE 7]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/grafie7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if lte IE 6]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/grafie6.php" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if Webkit]>
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/css/grafsafari.css" rel="stylesheet" type="text/css" />
<![endif]-->
Time to create page: 0.076 seconds