function trim(str) 
{
    return str.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, '');
}
function viewpic(url,x,y) 
{
  open(url,"","width="+x+",height="+y+",left=60,top=60,resizeable=no,locationbar=no,menubar=no,scrollbars=yes,status=no,toolbar=no");
}
/*----------------------------------------*/
function get_page_height()
{
	var h;
	if(document.height)
		h=document.height;
	else
	{
		if(document.body.scrollHeight)
		  h=document.body.scrollHeight;
		else
		{
		  if(document.body.style.pixelHeight)
			 h=document.body.style.pixelHeight;
		}
	}
	return h;
}
function get_page_width()
{
	var w;
	if(document.width)
	{
		w=document.width;
	}
	else
	{
		if(document.body.scrollWidth)
		{
		  w=document.body.scrollWidth;
		}
		else
		{
		  if(document.body.style.pixelWidth)
			 w=document.body.style.pixelWidth;
		}
	}
	return w;
}
/*----------------------------------------*/
function click_link_get_mail_index()
{
	$.get(
			'register_files/ajax.php',	
			{
				 action: 'click_link_get_mail_index'
			},
			function (data)
			{
			}
    );
}