var popup="";	
POSLEFT = (screen.width-800)/2;
POSTOP = (screen.height-600)/2;

function defekterLink(tid) {
	openWindow('/defekterlink.php4?tid='+tid, 350, 60);	
}

function openWindow(url, breite, hoehe){
	popup = window.open(url, 'WnW','left='+((screen.width-breite)/2)+',top='+POSTOP+',width='+breite+',height='+hoehe+',resizeable=no,location=no');		
	popup.focus();
}

function putIN(inhalt, id, showid){
	document.getElementById(id).innerHTML = inhalt;
	if(showid!=0){
		document.getElementById(showid).style.display = 'block';
	}
	
}
