Ja selvfølgelig, den her under er med iframe:
<head>
<style>
#popup, #iframepopup{
display:none;
top:0px;
left:0px;
position:absolute;
width:100%;
height:100%;
}
</style>
<script type="text/javascript">
//funktion som fanger browser window's højde + bredde
var windowHeight ="";
var windowWidth = "";
function pageSize(){
if (typeof(window.innerHeight) == 'number') {
windowHeight = window.innerHeight;
}
else {
if (document.documentElement && document.documentElement.clientHeight) {
windowHeight = document.documentElement.clientHeight;
}
else {
if (document.body && document.body.clientHeight) {
windowHeight = document.body.clientHeight;
}
}
}
if (typeof(window.innerWidth) == 'number') {
windowWidth = window.innerWidth;
}
else {
if (document.documentElement && document.documentElement.clientWidth) {
windowWidth = document.documentElement.clientWidth;
}
else {
if (document.body && document.body.clientWidth) {
windowWidth = document.body.clientWidth;
}
}
}
alert(windowWidth + " " + windowHeight);
}
function showbox(){
pageSize();
doc = document.getElementById('popup');
iframe = document.getElementById('iframepopup');
doc.style.height = windowHeight + "px";
doc.style.width = windowWidth + "px";
iframe.style.height = windowHeight + "px";
iframe.style.width = windowWidth + "px";
doc.style.display = "block";
iframe.style.display = "block";
iframe.src = "
http://www.eksperten.dk";}
</script>
</head>
<body>
<div id="popup"><iframe id="iframepopup" frameborder="0" ></iframe></div>
<a href="java script:showbox()">show</a>
</body>