Er der ikke bare:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da">
<head>
<title>Centreret popup vindue</title>
<script type="text/javascript">
function popup(url,name,win_height,win_width) {
pos_horizon = ((screen.width/2)-(win_width/2));
pos_vertical = ((screen.height/2)-(win_height/2));
window.open(url,name,"width="+win_width+",height="+win_height+",top="+pos_vertical+",left="+pos_horizon);
}
</script>
</head>
<body>
<p><a href="#" onclick="popup('billede.htm','mitvindue','300','300');">Åben popup vindue</a></p>
</body>
</html>
billede.htm:
[code]
<html>
<head>
<title>Mit billede</title>
</head>
<body bgcolor="gray">
<center><img src="bilede.jpg"></center>
</body>
</html>
Indlæg senest redigeret d. 08.06.2007 17:40 af Bruger #10099