// JavaScript Document

var demoUrl = "http://www.becosoft-immo.de/?ToLogin=yes";

function redirect(tUrl) {
	// alert(tUrl);
	document.location.href = tUrl;	
}

function inArray(theArray, theValue) {
	var found = false;
	
	if(typeof(theArray) == "object") {
		
		for(var i=0; i<theArray.length; i++) {
			if(theArray[i] == theValue) {
				found = true;
				break;
			}
		}		
		
	}
	
	return found;
}

function showDemoApp() {
	window.open(demoUrl, "demoWindow", "location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width=800,height=600");
}
