openInside = function (url)
{
	var box = $('openInsideBox');
	var iframe = document.createElement("iframe");
		iframe.setAttribute('width', '100%');
		iframe.setAttribute('height', '100%');
		iframe.setAttribute('scrolling', 'auto');
		iframe.setAttribute('frameborder', '0');
		iframe.setAttribute('src', url);

	box.style.display = 'block';
	box.style.zIndex  = 100;

	box.appendChild(iframe);
}
window.closeInside = function ()
{
	var box = $('openInsideBox');
	box.style.display = 'none';
	box.style.zIndex  = -10;
	box.removeChild(box.firstChild);
}
$ = function(id){return document.getElementById(id)}