function forum_hop(forumid) {
hjem='http://www.climate-debate.com/forum/';
if (forumid == '6') {
	document.location.href=hjem+'climate-debate-in-general-f6.php';
} else if (forumid == '7') {
	document.location.href=hjem+'climate-policy-f7.php';
} else if (forumid == '8') {
	document.location.href=hjem+'private-climate-policy-f8.php';
} else if (forumid == '9') {
	document.location.href=hjem+'technology-f9.php';
} else if (forumid == '10') {
	document.location.href=hjem+'explanations-f10.php';
} else if (forumid == '11') {
	document.location.href=hjem+'consequences-f11.php';
} else if (forumid == '12') {
	document.location.href=hjem+'climate-philosophy-f12.php';
} else if (forumid == '13') {
	document.location.href=hjem+'events-etc--f13.php';
} else if (forumid == '14') {
	document.location.href=hjem+'weather-f14.php';
} else if (forumid == '15') {
	document.location.href=hjem+'debate-about-climate-debate-com-f15.php';
} else if (forumid == '16') {
	document.location.href=hjem+'trash-bin-f16.php';
} else if (forumid == '17') {
	document.location.href=hjem+'politics-and-news-f17.php';
} else if (forumid == '18') {
	document.location.href=hjem+'science-f18.php';
} else if (forumid == '19') {
	document.location.href=hjem+'culture-f19.php';
} else if (forumid == '20') {
	document.location.href=hjem+'fun-f20.php';
} else if (forumid == '21') {
	document.location.href=hjem+'other-f21.php';
} else {
	document.location.href=hjem+'index.php';
}
}

function DeleteItem() {
	return confirm('Delete this thread?');
}

function flipBox(who) {
	var tmp; 
	if (document.images['b_' + who].src.indexOf('_on') == -1) { 
		tmp = document.images['b_' + who].src.replace('_off', '_on');
		document.getElementById('box_' + who).style.display = 'none';
		document.images['b_' + who].src = tmp;
	} else { 
		tmp = document.images['b_' + who].src.replace('_on', '_off');
		document.getElementById('box_' + who).style.display = 'block';
		document.images['b_' + who].src = tmp;
	} 
}

function addText(elname, wrap1, wrap2) {
	if (document.selection) { // for IE 
		var str = document.selection.createRange().text;
		document.forms['inputform'].elements[elname].focus();
		var sel = document.selection.createRange();
		sel.text = wrap1 + str + wrap2;
		return;
	} else if ((typeof document.forms['inputform'].elements[elname].selectionStart) != 'undefined') { // for Mozilla
		var txtarea = document.forms['inputform'].elements[elname];
		var selLength = txtarea.textLength;
		var selStart = txtarea.selectionStart;
		var selEnd = txtarea.selectionEnd;
		var oldScrollTop = txtarea.scrollTop;
		//if (selEnd == 1 || selEnd == 2)
		//selEnd = selLength;
		var s1 = (txtarea.value).substring(0,selStart);
		var s2 = (txtarea.value).substring(selStart, selEnd)
		var s3 = (txtarea.value).substring(selEnd, selLength);
		txtarea.value = s1 + wrap1 + s2 + wrap2 + s3;
		txtarea.selectionStart = s1.length;
		txtarea.selectionEnd = s1.length + s2.length + wrap1.length + wrap2.length;
		txtarea.scrollTop = oldScrollTop;
		txtarea.focus();
		return;
	} else {
		insertText(elname, wrap1 + wrap2);
	}
}

function insertText(elname, what) {
	if (document.forms['inputform'].elements[elname].createTextRange) {
		document.forms['inputform'].elements[elname].focus();
		document.selection.createRange().duplicate().text = what;
	} else if ((typeof document.forms['inputform'].elements[elname].selectionStart) != 'undefined') { // for Mozilla
		var tarea = document.forms['inputform'].elements[elname];
		var selEnd = tarea.selectionEnd;
		var txtLen = tarea.value.length;
		var txtbefore = tarea.value.substring(0,selEnd);
		var txtafter =  tarea.value.substring(selEnd, txtLen);
		var oldScrollTop = tarea.scrollTop;
		tarea.value = txtbefore + what + txtafter;
		tarea.selectionStart = txtbefore.length + what.length;
		tarea.selectionEnd = txtbefore.length + what.length;
		tarea.scrollTop = oldScrollTop;
		tarea.focus();
	} else {
		document.forms['inputform'].elements[elname].value += what;
		document.forms['inputform'].elements[elname].focus();
	}
}

function show_hide(msg_id) {
	msg_id.style.display = msg_id.style.display == 'none' ? 'block' : 'none';
}