//<![CDATA[

function NewWindow(mypage,myname,w,h,s){
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =	'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='
	+s+',resizable=0,height='
	+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
	win = window.open(mypage,myname,settings);
	}
	
		// display pic
		function writePic(pic)
		{
			var code = "<html>\n<head>"
			+ "<\/head>\n<title>Illuminati Conspiracy Archive</title>\n"
			+ "<body style='background: #000; margin: 0px'>\n"
			+ "<img src='"+pic+"' onclick='self.close()'><\/body><\/html>";
		
			var doc = win.document;
			doc.open("text/html", "replace");
			doc.write(code);
			doc.close();
		}

function iframeGrabContents() { 
	var _el = document.getElementById('iframeContents'); 
	if(!document.getElementById || !_el) return;
	var _frame = window.frames['quotes'].document.body.innerHTML; 
	_el.innerHTML = _frame;
	var conspira = document.getElementById('conspira');
	conspira.innerHTML = '';
	conspira.style.border = 'none'
	conspira.style.background = '#ddd'
} 

window.onload = iframeGrabContents;

//]]>