function init()
{

}

function handlePollClick(poll_id,poll_answer_id)
{
	new Ajax('/content/index/incrementPollAnswer/poll_id/'+poll_id+'/poll_answer_id/'+poll_answer_id, {method: 'get', onComplete: this.handlePollClickCallback}).request();
}

function handlePollClickCallback(result)
{
	// result =  poll_id
	window.open('/content/index/pollResults/poll_id/'+result+'/message/Thank you for voting in our poll!','pollResults','resizable=no,scrollbars=no,width=400,height=300');
	
}
function handlePollResultsClick(result)
{
	// result =  poll_id
	window.open('/content/index/pollResults/poll_id/'+result+'','pollResults','resizable=no,scrollbars=no,width=400,height=300');
	
}
function handlePrintArticleClick(article_id,area_Name,section_id)
{
	window.open('/content/index/printerfriendlyarticle/area/' + area_Name + '/section/' + section_id + '/item/' + article_id + '.html','printArticle','resizable=no,scrollbars=yes,width=800,height=600');
}

function handleSendPhotoClick()
{
	window.open('https://contest.mdjonline.com/email_bak.php','','resizable=no,scrollbars=yes,width=400,height=600');
}






