/*	===============================================================	© Carnival Investment Properties Limited	http://www.carnivalproperties.co.uk	Type:				MoneyCorp Functions	Built by:			http://www.exit7.co.uk	Author:				James Bates	Creation Date:		25 January 2006	---------------------------------------------------------------	Version no:			1.0	Last edited:		n/a still in development	============================================================ */		// Currency coverter & tickerfunction popup(url,winname,w,h,feat){	if (!(isNaN(w) || isNaN(h)))	{		var adjust = 20;		var x=parseInt((screen.width-w)/2);		var y=parseInt(((screen.height-h)/2-adjust));		if (x<0)	x=0;		if (y<0)	y=0;				if (feat!=null && feat!="")		{			feat=","+feat;		}		else		{			feat="";		}		feat="left="+x+",top="+y+",width="+w+",height="+h+feat;	}	var this_win = window.open(url,winname,feat);	this_win.focus();}
