function isIE6()
{
var agt = navigator.userAgent.toLowerCase();
return agt.indexOf("msie 6") > 0;
}
function _goTo(index)
{
var intValue = _formatInt(index);
if (isIE6())
{
parent.moveTo(0,0);
parent.resizeTo((screen.width - 15), 200);
var params = "scrollbars=yes,resizable=yes,left=0,top=170,width=" + (screen.width - 15) + ",height=" + (screen.height - 240);
var newwin = window.open("template-" + intValue + ".html", "templatewindow", params);
newwin.focus();
}
else
{
parent.template.window.location.href = "template-" + intValue + ".html";
}
parent.menu.window.location.href = "menu-" + intValue + ".html";
return false;
}
Fixed in Template Validator 0.3.