Hmm Remember elusives old site? How can i create a fromeless window w/ out having it be linked first?
1:Pred_FNM <ER>> guys, yellow + green is really shitty for forumcolours :p 1:lnx> what's wrong with that combination 1:lnx> I wear yellow-green clothes :( 1:Pred_FNM <ER>> i dont mean in clothes, in forums.. 1:lnx> kk 1:lnx> buy a black-white computer monitor if you don't like the colors foo
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
url = "page.html";
var speedX = 7;
var speedY = 5;
var bgColor = "#000000";
var txtColor = "#FF80000";
if (document.all) {
var wide = window.screen.availWidth;
var high = window.screen.availHeight;
}
function Spawner() {
if (document.all) {
var Spawn = window.open("","Spawner","fullscreen");
Spawn.document.write('<HTML><BODY BGCOLOR='+bgColor+' SCROLL=NO><FONT FACE=ARIAL COLOR='+txtColor+'>Loading...</FONT></BODY></HTML>');
Spawn.focus();
for (H=1; H<high; H+= speedY) {
Spawn.resizeTo(1,H);
}
for (W=1; W<wide; W+= speedX) {
Spawn.resizeTo(W,H);
}
Spawn.location = url;
}
else {
window.open(url,"Spawner","");
}
}
</script>
</HEAD>
<BODY>
<a href="javascript:Spawner()">Click Here To Launch Page</a>
</BODY>
<a href="javascript:window.close();">Close Window</a>
1:Pred_FNM <ER>> guys, yellow + green is really shitty for forumcolours :p 1:lnx> what's wrong with that combination 1:lnx> I wear yellow-green clothes :( 1:Pred_FNM <ER>> i dont mean in clothes, in forums.. 1:lnx> kk 1:lnx> buy a black-white computer monitor if you don't like the colors foo

Comment