<!--
var btn = new Array(6);

for(var i=0; i<6; i++)
	btn[i] = new Image(171,29);

btn[0].src = "/images/btn.job.on.gif";
btn[1].src = "/images/btn.job.off.gif";
btn[2].src = "/images/btn.life.on.gif";
btn[3].src = "/images/btn.life.off.gif";
btn[4].src = "/images/btn.fun.on.gif";
btn[5].src = "/images/btn.fun.off.gif";

//achtung: Bild Nr. 2 ist Flash/Gif im Top-Frame!!

function fktGoToArea(pQuerystring, pArea) {
	parent.victop.document.images[1].src = btn[1].src;
	parent.victop.document.images[3].src = btn[3].src;
	parent.victop.document.images[4].src = btn[5].src;
	
	switch(pArea) {
		case ".jo":
			parent.victop.document.images[1].src = btn[0].src;
		break;
			
		case ".li":
			parent.victop.document.images[3].src = btn[2].src;	
		break;
			
		case ".fu":
			parent.victop.document.images[4].src = btn[4].src;
		break;
	}	
	parent.vicleft.location.replace('/cms/vscout/navigation.asp?' + pQuerystring);
	return;
}

var floater=null;
var win1=null;
var win2=null;
var win3=null;

function neues_fenster(url,width,height,name,fmenu,fresize,ftoolbar,flocationbar,fstatus,fscrollbars,pos_top,pos_left) {
	if (!width) width='640';
	if (!height) height='480';
	if (!name) name='vicwin';
	if (!fmenu) fmenu='yes';
	if (!fresize) fresize='yes';
	if (!ftoolbar) ftoolbar='no';
	if (!flocationbar) flocationbar='no';
	if (!fstatus) fstatus='yes';
	if (!fscrollbars) fscrollbars='yes';
	if (!pos_top) pos_top = (screen.height/2)-(height/2);
	if (!pos_left) pos_left = (screen.width/2)-(width/2);

	if (document.layers || document.all) {
		if (win1 && (!win1.closed) && (win1.name == name)) {
			floater = win1;
		}
		else if (win2 && (!win2.closed) && (win2.name == name)) {
			floater = win2;
		}
		else if (win3 && (!win3.closed) && (win3.name == name)) {
			floater = win3;
		}
		else {
			if (win1 && (!win1.closed)) {
				floater = win1;
			}
			else if (win2 && (!win2.closed)) {
				floater = win2;
			}
			else if (win3 && (!win3.closed)) {
				floater = win3;
			}
			else {
				floater = null;
			}
		}

		if (floater && !floater.closed) {
			floater.focus();
			floater.document.location.href = url;
			// floater.resizeTo(width, height);
		}
		else {
			floater = window.open(url, name, 'width='+width+',height='+height+',top='+pos_top+',left='+pos_left+',menubar='+fmenu+',resizable='+fresize+',toolbar='+ftoolbar+',location='+flocationbar+',status='+fstatus+',scrollbars='+fscrollbars);

			if (document.layers) {
				floater.focus();
			}

			if (name.substring(0,3) != 'rnd') {
				if ((!win1) || win1.closed) {
					win1 = floater;
				}
				else if ((!win2) || win2.closed) {
					win2 = floater;
				}
				else {
					win3 = floater;
				}
			}
		}
	}
	else {
		floater = window.open(url, name, 'width='+width+',height='+height+',top='+pos_top+',left='+pos_left+',menubar='+fmenu+',resizable='+fresize+',toolbar='+ftoolbar+',location='+flocationbar+',status='+fstatus+',scrollbars='+fscrollbars);
	}
	return;
}
//-->