// http://www.pecha-kucha-muenchen.de/files/default.js 1.1 (12/22/08)
// Copyright (c) Florian Fink http://www.florian-fink.de/
// Alle Rechte vorbehalten.

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

function open_window(window_url,window_name,window_width,window_height,window_resizable,window_scrollbars) {
	window_name = Math.round(Math.random() * 1000);
	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");
}

