	function popup(url, width, height){
		width = width || 1000
		height = height || 707
		window.open(url, '', 'width=' +width+ ',height=' +height+',status=yes')
		}
	
	function launchWindow(type)
	{
		if(type == 'about')
		{
			window.open('/html/pdf/about-us.pdf', '', '');
		}
		else
		{
			popup('/html/' +type+ '.html');
		}
	}

	function downloadPortfolio(folder, name){
		if(window.console)console.log([folder, name]);
		var file	= '/photographers/' +folder+ '/other/' +name+ '.pdf';
		var url		= '/download.php?file=' + file;
		window.frames['download'].location.href = url;
		if(window.console)console.log(url);
		}

	function showMap(){
		//popup('/html/map.html', 600, 600)
		window.open('http://maps.google.co.uk/maps?f=q&q=27+Green+Walk,+London+SE1+4TQ+(Jane+Patrick,+Unit+c102,+The+Jam+Factory)&z=16');
		}