<script language="JavaScript" type="text/javascript">
<!--
function pass()
{
if (document.inloggning.password.value != "")
{
[b]window.open(escape(document.inloggning.password.value.toLowerCase()) + "/presentationen.ppt","","fullscreen");[/b]
document.inloggning.password.value = "";
}
}
//-->
</script>
Frågan#1
Hej alla, hur får jag scriptet att öppna presentationen i ett nytt (kanske fullscreen) fönster och inte i mainFrame som det kommer nu? Hoppas på svar...
<script language="JavaScript" type="text/javascript">
<!--
function pass()
{
if (document.inloggning.password.value != "")
{
window.location=escape(document.inloggning.password.value.toLowerCase()) + "/presentationen.ppt";
document.inloggning.password.value = "";
}
}
//-->
</script>
TACK!