//-------------------------------------------------------------------------
//- Standard Page Functions
//-------------------------------------------------------------------------
function PageFunctions()
{
	//---------------------------------------------------------------------
	//- Scroll To Element X
	//---------------------------------------------------------------------
	this.ScrollToElement = function(theElementId)
	{
	  	var selectedPosX = 0;
	  	var selectedPosY = 0;	  
	  	
	    theElement =  document.getElementById(theElementId);
	  	while( theElement != null){
		    selectedPosX += theElement.offsetLeft;
		    selectedPosY += theElement.offsetTop;
		    theElement = theElement.offsetParent;
	  	}
	  	
	  	if(selectedPosY>20)
	  		selectedPosY = selectedPosY - 10;
	  	
	  	if(theElementId!='anchor_page_top')
			window.scrollTo(selectedPosX,selectedPosY);
		else
			window.scrollTo(0,0);
	}
	
	this.displayLoading = function(PictureSrc)
	{
		var str = '<table width="100%" height="100%" align="center">'+
				'	<tr>'+
				'		<td align="center" valign="middle">'+
				'			<img src="'+PictureSrc+'">'+
				'		</td>'+
				'	</tr>'+
				'	<tr>'+
				'		<td align="center" style="font-size:12px;color:#666666;font-weight:bold;">'+
				'			Loading ...'+
				'		</td>'+
				'	</tr>'+
				'	</table>';
		return str;
	}

	//---------------------------------------------------------------------
	//- Mailto
	//---------------------------------------------------------------------	
	this.mailto = function(s_mail1, s_mail2)
	{
		document.location='mailto:' + s_mail2 +'@' + s_mail1;
	}
}

var oPageFunctions = new PageFunctions();