﻿var TOP_IMAGE_URL="../images/Top/";
var height=300;
var a=330;
function resizeIframe(){
	alert("test");
}
function loadTopImage(){
	var n = Math.floor(Math.random() * 78);
	n=("00"+n).slice(-3);
	var node=document.getElementById("topimage");
	node.innerHTML="<img src='"+TOP_IMAGE_URL+n+".jpg'>";
}
function resizeFrame(){
	try{
		var iframe=document.getElementById("IFrameMain");
		iframe.height=iframe.contentWindow.document.body.scrollHeight+100;
	}catch(e){
		iframe.height=auto;
	}
}

