/**
 * Opens the content in a new window.
 */
function openContent(text) {
	window.open('content.html', '_blank', 'height='+screen.availHeight+',left=0,location=no,menubar=no,resizable=yes,top=0,width='+screen.availWidth);
	return false;
}

