//TL-> 11/26/2007 -
function open_zone_flag_popup(page,param,div_close,width,height)
{
    /*
    if(div_close != '')
	{
		document.getElementById(div_close).style.display = 'none';
		
		if(document.getElementById('fade_id'))
			document.getElementById('fade_id').style.display = 'none';
			
		
	}
    */
	window_format = 'top=50,left=200,width='+width+',height='+height+',scrollbars=yes';

	window.open(page+param,'',window_format);
}

function zone_flag_div_content(div_id,email_page,zone_page, width, height, visitor_mode)
{
	if(width == undefined)
		width = 500;

	if(height == undefined)
		height = 550;

	if(document.getElementById(div_id))
		document.getElementById(div_id).style.display = 'block';
	
	if(document.getElementById('fade_id'))
	{
		document.getElementById('fade_id').style.display = 'block';
	}

	

	share_str = "<div class=\"large\" style=\"padding:10px;\"><b>Choose recipients using an option below:</b><br><div class=\"medium\" style=\"padding: 8 0 3 0px;\"><div class=\"left\" style=\"width:10px; text-align:left; color:#0066CC;\">-</div><div class=\"left\" style=\"padding-right:30px;\"><a href=\"#\" onClick=\"open_share_popup('"+gobbler_page+"','','"+div_id+"',520,538); return false;\"  class=\"noborder\">Select E-mails from your address book on yahoo, gmail etc.</a></div><br clear=\"all\"></div><div class=\"medium\" style=\"padding: 3 0px;\"><div class=\"left\" style=\"width:10px; text-align:left; color:#0066CC;\">-</div> <div class=\"left\" style=\"\"><a href=\"#\" onClick=\"open_share_popup('"+email_page+"','','"+div_id+"',"+width+", "+height+"); return false;\" class=\"noborder\">Enter E-mail addresses manually</a></div><br clear=\"all\"></div><div class=\"medium\" style=\"padding: 3 0px;\">";
	
	document.getElementById(div_id).innerHTML = share_str;

	return false;
}

function findPos(obj) {
	if(obj)
	{
		var curleft = curtop = 0;
		if (obj.offsetParent) {
			curleft = obj.offsetLeft
			curtop = obj.offsetTop
			while (obj = obj.offsetParent) {
				curleft += obj.offsetLeft
				curtop += obj.offsetTop
			}
		}
		

		document.getElementById('fade_id').style.height = curtop;
		document.getElementById('fade_id').style.display = 'block';
	}
}