function QuickJump(Formular)
{
	var Element = Formular.Ziel.selectedIndex;
	if (Formular.Ziel.options[Element].value != 0)
	{
			if (Formular.Ziel.options[Element].value == '//') {
				window.open(Formular.Ziel.options[Element].value);
			}
			else {
				top.location = Formular.Ziel.options[Element].value;
			}
	}	
};
/**
 * -------------------------------------------------------------
 * Open Popup Script
 * -------------------------------------------------------------
 *
 * Opens a new window based on parameters given to this function.
 * Alternatively, the link opens in a seperate window in case that
 * Javascript is not available (through target="_blank" in href tag).
 *
 * @param String linkURL Link address to be displayed in the popup window
 * @param String winName Name of the particular popup window
 * @param int winWidth Width of the popup window
 * @param int winheight Height of the popup window
 * @param String winArgs Properties of the popup window
 * @param bool setfocus Set to true in order to focus the popup window
 *
 * @return false
 *
*/

function openPopup(linkURL,winName,winWidth,winHeight,winArgs,setfocus) {
	if (linkURL != null) {
		if (window.is24_isPopup == null) {
			if (winName == null) {
				winName = "is24_newWin";
			}
			if (winWidth == null || typeof winWidth != "number") {
				winWidth = 600;
			}
			if (winHeight == null || typeof winHeight != "number") {
				winHeight = 400;
			}
			if (winArgs == null) {
				winArgs = "";
			}
			if (setfocus == null) {
				setfocus = true;
			}
			//
			// List of possible properties in the arguments variable, seperated by a comma, no leading/trailing spaces!
			//
			//   location	= yes|no 	|	top		= [pixel]
			//   menubar	= yes|no	|	left	= [pixel]
			//   resizable	= yes|no	|	screenX	= [pixel]
			//   status		= yes|no	|	screenY	= [pixel]
			//   titlebar	= yes|no
			//
			// Example link:
			//
			// <a href="http://www.is24.de" onclick="return openPopup(this.href,'newWin',800,600,'location=no,menubar=yes,titlebar=no')" target="_blank" title="Externer Link">Text des Links</a> 
			//
			// todo #15662
			var scrollVar = ",scrollbars=yes";
			if(winArgs.indexOf("scrollbars=") != -1){
				scrollVar = "";
				var reg = /scrollbars=(0|no)/;
				winArgs = winArgs.replace(reg,"scrollbars=yes");
			}
			_winArgs = "width="+ winWidth +",height="+ winHeight + ", " + winArgs + scrollVar;
			var _newWin = window.open(linkURL,winName,_winArgs);
			if (setfocus == true) {
				_newWin.focus();
			}
		} else {
			// Link shall open in an already opened popup
			document.location.href = linkURL;
		}
		return false;
	}
	return false;
};
// end openPopup()
