// JavaScript Document

function description(objTitle,objExtra,objCat) {
	var objID = document.getElementById('description');
	objID.innerHTML = '<strong>'+objTitle+'</strong> '+objExtra+' <strong style="color:#eee">'+objCat+'</strong>';
}

function open_archive () {
	var sSize = (screen.width - 200);
	window.open('archive.php','Archive','scrollbars=yes,resizable=yes,top=60,left=100,width='+sSize+',height=760')
}
