// opens a new window with parameters
var win = null;
function NewWindow(thepageurl,thename,w,h,l,t,toolbar,location,directories,statusbar,resize,menubar,scroll,copyhistory)
{
	LeftPosition = l;
	TopPosition = t;
	if (l == 'center')
	{
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	}
	if (t == 'center')
	{
		TopPosition = (screen.height) ? (screen.height-h)/4 : 0;
	}
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+',status='+statusbar+',toolbar='+toolbar+',location='+location+',directories='+directories+',menubar='+menubar+',copyhistory='+copyhistory;
	win = window.open(thepageurl,thename,settings);
	if(win.window.focus){win.window.focus();}
}
// Google-Analytics Konto

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-10342161-1");
pageTracker._trackPageview();
} catch(err) {}
