Smarty (Template plugin for PHP)

Hi there!

I’m having problems with Smarty (smarty.php.net). I’m trying to make a template but smarty’s compiler won’t compile the html code. I get the error:

Fatal error: Smarty error: [in _header.tpl line 11]: syntax error: unrecognized tag: behavior:url(“css/csshover.htc”); font-size: 100%; (Smarty_Compiler.class.php, line 432) in /home/httpd/html/Pv2/lib/smarty/libs/Smarty.class.php on line **1088

**_header.tpl looks like:

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”
http://www.w3.org/TR/html4/loose.dtd”>
<html>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-2”>
<title>Nogometni klub Tolmin</title>
<link href=“css/www.css” rel=“stylesheet” type=“text/css”>
<link href=“css/menu.css” rel=“stylesheet” type=“text/css”>
<!–[if IE]>
<style type=“text/css” media=“screen”>
BODY {
behavior:url(“css/csshover.htc”);
font-size: 100%;}
#menu ul li {float: left; width: 100%;}
#menu ul li a {height: 1%;}
}

</style>
<![endif]–>
</head>
<body>
<table width=“776” height=“100%” border=“0” align=“center” cellpadding=“0” cellspacing=“0” class=“bgrtable”>
<tr>
<td width=“8” rowspan=“2” class=“bgrtableleft”> </td>
<td height=“118” colspan=“3”><img src=“img/header.jpg” width=“760” height=“118”></td>
<td width=“8” rowspan=“2” class=“bgrtableright”> </td>
</tr>
<tr>

It looks like a strange error because the compiler thinks the css code is an error, but there’s no error in there. Does anyone know how to fix this problem?