You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
832 B
26 lines
832 B
2 years ago
|
<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script language='javascript'>
|
||
|
function popup_window( url, id, width, height )
|
||
|
{
|
||
|
//extract the url parameters if any, and pass them to the called html
|
||
|
var tempvar=document.location.toString(); // fetch the URL string
|
||
|
var passedparams = tempvar.lastIndexOf("?");
|
||
|
if(passedparams > -1)
|
||
|
url += tempvar.substring(passedparams);
|
||
|
popup = window.open( url, id, 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + '' );
|
||
|
popup.focus();
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<p align='center'>
|
||
|
<br/>
|
||
|
<a href="javascript:popup_window('anleitung_viewlet_swf.html', 'anleitung', 1048, 816);">Anleitung Super-X</a>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|
||
|
|