var winW = 630, winH = 460;
if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth;
  winH = window.innerHeight;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = document.body.offsetWidth;
  winH = document.body.offsetHeight;
 }
}
var iframeHieght = winH-95;
document.getElementById('myiframe').height = iframeHieght;
window.onload =function () {
var theURL = document.location.href;
var dextination;
	if(theURL.indexOf("#")!=-1) {
		var urlArray = theURL.split("#");
		destination = document.getElementById('myiframe').src = urlArray[1];
	} else if(theURL.indexOf("#")==-1) {
		destination = 'http://www.youtube.com/astarmite';
	}
	document.getElementById('myiframe').src = destination;
}
function closeMenu() {
	document.location.href=document.getElementById('myiframe').src;
}
function loadIframe(theSrc) {
	document.getElementById('myiframe').src=theSrc;
}