/*    POP UP Functions     */
function PopUp(FileName,PopUpWidth,PopUpHeight,Scroll)
{
	PopUpLeft=((screen.availWidth-PopUpWidth)/2);
	PopUpTop=((screen.availHeight-PopUpHeight)/2);

	if (Scroll==1)
	{
		window.open (FileName,"_blank","toolbar=No,location=No,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+PopUpWidth+",height="+PopUpHeight+",left="+PopUpLeft+",top="+PopUpTop+"");
	}
	else
	{
		window.open (FileName,"_blank","toolbar=No,location=No,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+PopUpWidth+",height="+PopUpHeight+",left="+PopUpLeft+",top="+PopUpTop+"");
	}
}

/*    Live Chat     */
function LiveChat(ChatURL)
{
	PopUpLeft=((screen.availWidth-600)/2);
	PopUpTop=((screen.availHeight-500)/2);

	window.open (ChatURL,"LivechatWindow","toolbar=No,location=No,directories=no,status=no,menubar=no,scrollbars=no,resizable=No,width=600,height=500,left="+PopUpLeft+",top="+PopUpTop+"");
}


function trim(String) 
{
	return String.replace(/^\s+|\s+$/g,"");
}