<!--
window.onload = init;
function init()
	{
	    //  alert("main.init");
	    //  alert(top.scan.location.href);
	    scanURL = new String(top.scan.location);
		toolURL = new String(top.toolbar.location);
        if (scanURL.indexOf("blank") != -1)
        	top.scan.location.replace("scan.html");
        if (toolURL.indexOf("blank") != -1)
        	top.toolbar.location.replace("toolbar.html");
        else top.toolbar.resetPage();
	}
document.onkeydown = onKeyDown;
function onKeyDown(evt)
	{
    	evt = (evt) ? evt : ((event) ? event : null);
        parent.toolbar.onKeyDown(evt);
	}
//-->
