
function twaddle(){return;}

function func_get_url_base(){

	var argh = window.location.href.split('/');
	
	switch(argh[2]) {
		case 'bill2003srv1':
			break;			
		case 'localhost':
			break;
		default:
			argh[2] = 'www.weclickedtogether.com';
			break;
	}

	argh.splice(argh.length - 1,1); // drop last array element
	
	return argh.join('/') + '/'; // they get the url base with correct host name
}