// http://www.samson-partner.de/files/default.js 1.0.9 (1/19/09)
// Copyright (c) Florian Fink http://www.florian-fink.com/
// All rights reserved.

if ((top.frames.length > 0) || (top.location.href.indexOf("www.samson-partner.de") == -1)) {
	top.location.replace("http://www.samson-partner.de/");
}

function switch_image(image_name,image_url) {
	image_src = new Image();
	image_src.src = image_url;
	document.images[image_name].src = image_src.src;
}

function open_window(window_url,window_name,window_width,window_height,window_resizable,window_scrollbars) {
	window_name = Math.round(Math.random() * 1000);
	default_remote_window = window.open(window_url,window_name,"width=" + window_width + ",height=" + window_height + ",resizable=" + window_resizable + ",scrollbars=" + window_scrollbars + ",toolbar=0,status=0,directories=0,location=0,menubar=0");
}
