Hallo,
ich habe ein Popup, was im Firefox wunderbar funktioniert. Im IE fast auch, nur habe ich dort nach oben und nach links einen 5px Abstand.
Woran kann das liegen ? Hier der Code:
LINK:
Inhalt Popup:
Wer hat einen Tipp für mich ?
Gruß
D.
ich habe ein Popup, was im Firefox wunderbar funktioniert. Im IE fast auch, nur habe ich dort nach oben und nach links einen 5px Abstand.
Woran kann das liegen ? Hier der Code:
LINK:
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mediacenter Link zum oeffnen</title>
<script type="text/javascript">
function oeffnefenster (url) {
fenster = window.open(url, "videoPlayer", "width=640,height=588,status=yes,scrollbars=no,resizable=no");
fenster.focus();
}
</script>
</head>
<body>
<a href="javascript:oeffnefenster('videoPlayer.php');">Linktext</a>
</body>
</html>
Inhalt Popup:
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Champions-Team - Willkommen beim Champions Team Mediacenter</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="#edf1f4" marginheight="0" marginwidth="0">
<center>
<div style="width:640px; background-color:#000000; margin: 0px 0px 0px 0px;"/><!-- Seitencontainer -->
<div style="width:640px; background-color:#edf2f4; margin-bottom:0px;"/><!-- HEADER -->
<img src="/_standards/bilder/header_mediacenter.jpg" width="650" height="81"/></div>
</div>
<div id="videoPlayer">
<script type="text/javascript" src="swfobject/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {
htmlPage: document.location,
settingsFile: "mediaconfig.php"<? if($_GET['currCateg'] && $_GET['currVideo']){ ?>,
currCateg: "<?=$_GET['currCateg'];?>",
currVideo: "<?=$_GET['currVideo'];?>"<? } ?>
};
var params = {
allowFullScreen: "true"
};
swfobject.embedSWF("videoPlayer.swf", "videoPlayer", "640", "500", "9.0.115", "swfobject/expressInstall.swf", flashvars, params);
</script>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</div>
</center>
</body>
</html>
Wer hat einen Tipp für mich ?
Gruß
D.