
function FramedPanel(idName) {
	this.iFrame = document.getElementById(idName + "_iframe");
	this.span = document.getElementById(idName + "_span");
	FramedPanel.prototype.GoToUrl = GoToUrl;
	FramedPanel.prototype.Show = Show; 
	FramedPanel.prototype.Hide = Hide; 
}

function GoToUrl(url) {
	this.iFrame.src = url
}

function Show() {
	this.span.style.display = 'inline';
}

function Hide() {
	this.span.style.display = 'none';
}