Forum Moderators: open
Alternately, you could open up to a blank page and then launch the specialized window as a pop-up "onload". You can only change the default chrome on windows that your page opens, not on windows that a user opens.
<html>
<head>
<script language="javascript">
<!--
function popUp()
{
window.open("interface.html","name","width=325,height=325,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
}
//-->
</script>
</head>
<body onload="popUp();">
</body>
</html>
[edited by: tedster at 12:44 am (utc) on Mar. 9, 2004]
[edit reason] fix side scroll [/edit]
But since you're working from a CD, there may a possibility of using a "signed javascript" application to bypass the usual security restrictions on a public website.
I know very little about this, except that it exists - never did it myself. Try a Google search, and see if you feel it's a relevant approach.