Sykane: Kleines Java Fenster

Beitrag lesen

Ich muss sagen das ich in SelfHtml über dieses Thema schlichtweg nicht fündig Geworden bin,
Habe aber jetzt eine Lösung ANderweitig Gefunden.

1. Paste the first into the HEAD of your HTML document
 2. Use the code to open the popup page on your site -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Idea by: Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL: http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=0,width=500,height=600,left = 262,top = 84');");
}
// End -->
</script>

<!-- STEP TWO: Paste this onLoad event handler into the BODY tag -->

<BODY onLoad="javascript:popUp('Frames/index.html')">