function check_requirements() {
	if (deconcept.SWFObjectUtil.getPlayerVersion().major < 7) {
		new Insertion.Top('container', "<div id=\"warning\"><div class=\"warning\">space150.com requires <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player version 7</a> or higher.</div></div>" );
	}
}
Event.observe(window, 'load', check_requirements);

function popup(evt) {
	var e = Event.findElement(evt, 'a');
	w = window.open( 
		e.href,
		'space150_popup',
		'status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,height=446,width=445'
	)
	w.focus();
	return false;
}
function attach_behaviors() {
	$$('a.popup').each(function(e){
		e.href = e.href.split('?')[0] + '?page=' + window.location + '?title=' + unescape(document.title);
		e.onclick = this.popup.bindAsEventListener(this);
	});
}
Event.observe(window, 'load', attach_behaviors);