
function sendSite(currentPath,w,h) {	

	var plink="http://heidelberger-sinfoniker.di/sendSite.php?cp="+currentPath;
	//var plink="http://www.heidelberger-sinfoniker.de/sendSite.php?cp="+currentPath;
	var para = "height="+h+",width="+w+",screenX=0,screenY=0";
	
	//window.alert(plink);
	
	screenw = screen.availWidth;
	s = window.open(plink,"sendSite",para);
	s.window.moveTo(200,50);
	
	if (s) {
		s.focus();
	}
	
}