
function open_upliftform (item_id)
{
	window.open('http://www.prayerss.com/prayers/'+item_id+'/uplift','_blank','height=320,width=460,scrollbars=no');
}

function open_commentform (item_id)
{
	window.open ('http://www.prayerss.com/prayers/'+item_id+'/comment','_blank','height=380, width=460,scrollbars=no');
}

function open_flagform (item_id)
{
	window.open('http://www.prayerss.com/prayers/'+item_id+'/flag','_blank','height=440, width=460,scrollbars=no');
}

function open_commentflag (comment_id)
{
	window.open('http://www.prayerss.com/prayers/comment/'+comment_id+'/flag','_blank','height=440, width=460,scrollbars=no');
}

function menu_show ()
{
	document.getElementById('menubox').style.height='auto';
	document.getElementById('menubox_buttons').style.display='block';
}

function menu_hide ()
{
	document.getElementById('menubox').style.height='34px';
	document.getElementById('menubox_buttons').style.display='none';
}

function entryform_show ()
{
	document.getElementById('entry_form').style.height='auto';
	document.getElementById('form_entry').style.display='block';
}

function entryform_hide ()
{
	document.getElementById('entry_form').style.height='34px';
	document.getElementById('form_entry').style.display='none';
}

