function event_continuation(path, artId) {	
	var event_div = "<div id=\"eventContinuationTipPop\" style=\"display: block; width: 400px; position: absolute; z-index: 1000;\">"
				  + "<center><img src=\"http://bangimg.oobang.com/images/article/event_message.jpg\" border=\"0\" width=\"380\" height=\"211\" usemap=\"#menu\"></center>"
				  + "<map name=\"menu\">"
				  + "<area shape=\"rect\" coords=\"340,25,355,43\" style=\"cursor:pointer;\" onclick=\"javascript:document.getElementById('eventContinuationTipPop').style.display='none';\">"
				  + "<area shape=\"rect\" coords=\"155,144,232,177\" style=\"cursor:pointer;\" onclick=\"javascript:parent.window.document.location.href='/"+path+"/"+artId+"';\">"
				  + "</map>"
				  + "</div>";
	var divObj = parent.document.getElementById('event_div');
	divObj.innerHTML = event_div;
}

function event_timing(path, artId) {	
	var event_div = "<div id=\"eventTipPop\" style=\"display: block; width: 400px; position: absolute; z-index: 1000;\">"
					+ "<center><img src=\"http://bangimg.oobang.com/images/article/event_message.jpg\" border=\"0\" width=\"380\" height=\"211\" usemap=\"#menu\"></center>"
					+ "<map name=\"menu\">"
					+ "	<area shape=\"rect\" coords=\"330,25,345,43\" style=\"cursor:pointer;\" onclick=\"javascript:document.getElementById('eventTipPop').style.display='none';\">"
					+ "	<area shape=\"rect\" coords=\"155,144,232,177\" style=\"cursor:pointer;\" onclick=\"javascript:parent.window.document.location.href='/"+path+"/"+artId+"';\">"
					+ "</map>"
					+ "</div>";
	var divObj = parent.document.getElementById('event_div');
	divObj.innerHTML = event_div;
}
