// http://www.rapideyemovement.de/files/default.js 1.1.7 (8/19/10)
// Copyright (c) Florian Fink http://www.florian-fink.de/
// Alle Rechte vorbehalten.

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

function open_window(window_url,window_name,window_width,window_height,window_resizable,window_scrollbars) {
	window_name = "film";
	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");
}

function open_window_rem(window_url,window_name,window_width,window_height,window_resizable,window_scrollbars) {
	window_name = "rem";
	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");
}

function write_login(login_value,login_time) {
	cookie_date = new Date();
	cookie_time = new Date(cookie_date.getTime() + 1000*60*60*24 * login_time);
	cookie_gmt = cookie_time.toGMTString();
	document.cookie = "login=" + login_value + ";expires=" + cookie_gmt + ";path=/;domain=.rapideyemovement.de";
}

