// for entry page TOP
function showCtxtEntryTop()
{
	var obj = getctxtObj(0, 3);
	for (var n = 0; n < obj.context.length; n++) {
		document.write('<div class=\"ov-div\" onclick=\"location.href=\'' + obj.context[n].link + '\'\"><span class=\"ov-title\">');
		document.write(obj.context[n].title + '</SPAN>');
		document.write('<br />' + obj.context[n].desc + '<br />');
		document.write('<span class="host">(' + obj.context[n].sitehost + ')</span></div>');
	}
}

// for entry page Side
function showCtxtEntrySide()
{
	var obj = getctxtObj(3, 2);
	for (var n = 0; n < obj.context.length; n++) {
		document.write('<div class=\"ov-div\"  onclick=\"location.href=\'' + obj.context[n].link + '\'\"><span class=\"ov-title\">');
		document.write(obj.context[n].title + '</SPAN>');
		document.write('<br />' + obj.context[n].desc + '<br />');
		document.write('<span class="host">(' + obj.context[n].sitehost + ')</span></div>');
	}
}
