﻿/***********************************************
* IFRAME Scroller script- ? Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

//specify path to your external page:
var iframesrc="http://www.face84.se/external.html"

//You may change most attributes of iframe tag below, such as width and height:
document.write('<iframe id="datamain" src="'+iframesrc+'" width="100px" height="150px" style="border:2px solid black"  frameborder="1" scrolling="no"></iframe>')




function show(id)
{
	if (document.all) {
		document.all[id].style.visibility = "visible"
	}

	else {
		document.getElementById(id).style.visibility = "visible"
	}

}

function hide(id)
{
	if (document.all) {
		document.all[id].style.visibility = "hidden"
	}

	else {
		document.getElementById(id).style.visibility = "hidden"
	}

}

