// var root = 'http://localhost/mental_vortex_neu/';
var root = 'http://www.mental-vortex.de/';

function redirectFrame() {
	// alert(document.location.href);
	// alert(top.location.href);
	if (document.location.href == top.location.href) {
		top.location.href = root + 'php/index.php?page=' + encodeURI(document.location.href);
	}
}

function openWindow(url) {	
	var win = window.open(url, 'MV_NEWS','width=600,height=600,scrollbars=yes,resizable=yes');
	win.focus();
}

function openSizeableWindow(url, width, height) {	
	var win = window.open(url, 'MV_NEWS','width=' + width+ ',height=' + height + ',scrollbars=yes,resizable=yes');
	win.focus();
}

