window.openShare = function(type) {
	var url = "";
	var u = "http://www.konstellation.dk/";
	var t = "Konstellation+Digital+Agency";
	switch(type) {
	case "facebook": 	url = "http://www.facebook.com/sharer.php?u="+u; break;
	case "delicious": 	url = "http://del.icio.us/post?url="+u+"&title="+t; break;
	case "windowslive": url = "https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url="+u+"&title="+t+"&top=1"; break;
	case "myspace": 	url = "http://www.myspace.com/Modules/PostTo/Pages/?l=3&u="+u; break;
	}
	if (url=="") return;
	var v = window.open(url, "_blank");
	v.focus();
}
