function findObj(id)
{
	if(document.all)
		return document.all[id];
	else
		return document.getElementById(id);
}

function content(cid) {
	html = findObj(cid);

	if(!html) return;
	if (html.style.display == "block") {
		html.style.display = "none";
	}
	else {
		html.style.display = "block";
	}
}

function new_popup(url,title) {
	popup = window.open(url,title,'width=382,height=563,resizable=no,toolbar=no,scrollbars=no,location=no,menubar=no,status=no');
	popup.focus();
}
