
function reload_with( select )
{
	getParams[ select.name ] = select.options[ select.selectedIndex ].value;
	
	var url = location.href.split('?')[0];
	
	var first = true;
	for( var name in getParams )
	{
		if( first )
			url += '?';
		else
			url += '&';
			
		url+=name+'='+getParams[name];
		
		first = false;
	}
	
	location = url;
}

function mail(str)
{
	str += '@pageturner.se';
	document.write('<a href="mailto:'+str+'">'+str+'</a>');
}
