// sr06 - js

function oWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function smail(id){
	maArray = new Array('marcel','christian','raphael','balint')
	em = 'mailto:'+maArray[id-1]+'@strafraum.org'
	self.location.href = em;
}