/************************************
	Open a new window with the user profile in it.
************************************/
function profile_popup(uid) {
	if (uid != 0) {
		profile = window.open("index.php?_action=profile_popup&uid="+uid,"profile","width=408,height=700,scrollbars=yes");
	}
}

/************************************
	Open a new window with the site news in it.
************************************/
function news_popup(filter) {
	if (isNaN(filter)) {
		news = window.open("index.php?_action=news_popup&month="+filter,"sitenews","width=408,height=650,resizeable=yes,scrollbars=yes");
	} else {
		news = window.open("index.php?_action=news_popup&id="+filter,"sitenews","width=408,height=650,resizeable=yes,scrollbars=yes");
	}
}

/************************************
	Open a new window with information in it.
************************************/
function info_popup(info_page) {
	profile = window.open("index.php?_action=info_popup&page=" + info_page,"","width=408,height=500,scrollbars=yes");
}


/************************************
	Open a new info UserPlane WebMessenger window 
************************************/
function webmessenger_popup(uid) {
	profile = window.open("index.php?_action=webmessenger&message_user=" + uid,"","width=800,height=600");
}

//function removeSelection(e) {
//	sel= window.getSelection();
//	sel.removeAllRanges();
//}

//document.onmousedown=removeSelection;
//document.onmouseup=removeSelection;
