I have a popup script that works in Mozilla but does not work in Internet Explorer. Please, maybe someone know how to fix that, becouse i'm not a programmer and i need help...
Scipt is here:
PHP Code:
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
<!--
var newwindow;
function popitup()
{
newwindow=window.open('rate.php?id=<?=$r['id'];?>','Rate <?=$r['name'];?>','height=400,width=200');
if (window.focus) {newwindow.focus()}
}
// -->
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</SCRIPT>