function openPopup(url, PopupName, height, width)
{
	popup = window.open(url, PopupName, 'width=' + width + ',height=' + height + ',scrollbars=yes,toolbar=no,location=no,menubar=no,resizable=yes');
	
	popup.focus();
} // openPopup

function markFields(ids, className)
{
	var idArray = ids.split("¶");

	for(var i = 0; i < idArray.length; i++)
	{
		document.getElementById(idArray[i]).className = className;
	} // for(var i = 0; i < idArray.length; i ++)
	
} // function markFields()

function changeZoom(divID,newSRC){
	var div=document.getElementById(divID)
	div.src=newSRC;
}

function changeZoomImg(divID,newImgPath)
{
	//customGates/resources/binaries/binary
	
	//newImgPath = 'http://www.wintersport.tv/customGates/resources/binaries/absenden';
	var div=document.getElementById(divID)
	var ZoomDisplay = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="400" HEIGHT="450" ID="theMovie">';
	ZoomDisplay += '		 <PARAM NAME="FlashVars" VALUE="zoomifyImagePath='+newImgPath+'&zoomifyZoom=30&zoomifyMinZoom=30&zoomifyMaxZoom=100&zoomifySlider=0">';
 	ZoomDisplay += '<PARAM NAME="MENU" VALUE="FALSE">';
	ZoomDisplay += '<PARAM NAME="SRC" VALUE="http://www.wintersport.tv/customGates/resources/binaries/universal/flash/zoomifyViewer.swf">';
	ZoomDisplay += ' <EMBED FlashVars="zoomifyImagePath='+newImgPath+'&zoomifyZoom=30&zoomifyMinZoom=30&zoomifyMaxZoom=100&zoomifySlider=0" SRC="http://www.wintersport.tv/customGates/resources/binaries/universal/flash/zoomifyViewer.swf" MENU="false" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"  WIDTH="400" HEIGHT="450" NAME="theMovie"></EMBED>';
  	ZoomDisplay += '</OBJECT>';
  	
  	div.innerHTML = ZoomDisplay;
	
}