function PopUp(url,type)
{
	switch (type)
	{
		case "news":
				window.open(url,type,"width=400, height=300, scrollbars=YES, resizable=YES");
		 break;
			case "buli_statistik":
				window.open(url,type,"width=500,height=450");
		 break;
		case "help":
			window.open(url,type,"width=600,height=550,scrollbars=YES, resizable=YES");
		 break;
			case "smiley":
			window.open(url,type,"width=400,height=400,scrollbars=YES, resizable=YES");
		break;
			case "rate":
			window.open(url,type,"width=450,height=420,scrollbars=0, resizable=YES");
		break;
			case "activ_user":
			window.open(url,type,"width=520,height=420,scrollbars=YES, resizable=YES");
		break;
			case "popup":
			window.open(url,type,"width=550,height=600,scrollbars=YES, resizable=YES");
		break;
			default:
			return false;
		break;
	}
	return false;
}

function PopUpBySize(url,width,height)
{
	window.open(url,'popup',"width="+width+",height="+height+",scrollbars=YES, resizable=YES");
	return false;
}

function dm(email)
{
//	email = email.replace(/\s\[ÄT\]\s/,"@");
	email = email.replace(" [ÄT] ","@");
	parent.location='mailto:'+email;
}

function findObject(obj) {
	if (typeof obj != "object") {
		var obj = document.getElementById(obj);
	}
	return obj;
}

