function functionLink() {
if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
	if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "blank")
		anchor.target = "_blank";
	}
}
window.onload = functionLink;

function functionLayer(stringValue) {
	var stringStyle = document.getElementById(stringValue).style;
	stringStyle.display = (stringStyle.display == 'none') ? 'block' : 'none';
}

function checkDelete(stringURL, stringValue) {
	var checkSelect = confirm("Vill du verkligen radera denna post?");
	if (checkSelect == true)
	{ window.location="?x=" + stringURL + "&tmp=" + stringValue; }
	else
	{}
}

function checkClose(stringURL, stringValue) {
	var checkSelect = confirm("Vill du verkligen stänga denna chatt?");
	if (checkSelect == true)
	{ window.location="?x=" + stringURL + "&y=" + stringValue; }
	else
	{}
}

function functionRedirect(stringValue) {
   window.location=stringValue;
}
