/* 
	mh.js: gesamtes script File für MH! 
	nm 2008 07 16
*/

function winOpen(link,win_wid,win_hei) {	
	var pos_x = (screen.width / 2) - (win_wid / 2);
	var pos_y = (screen.height / 2) - (win_hei / 2);
	window.open(link,'diverses','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width='+win_wid+',height='+win_hei+',screenX='+pos_x+',screenY='+pos_y);
}
