﻿function open_detail(inID)
{
	pgcms_open_window(300,400,"anwaelte_detail.php?ID="+inID,"DETAIL",false,false,false,false,false,false);
	return false;
}

function pgcms_open_window(width,height,url,wname,resizable,scrollbars,menubar,toolbar,directories,location,status)
{
	var attr = "";

	attr = attr + "width=" + width;
	attr = attr + ",height=" + height;
	attr = attr + ",resizable=" + (resizable ? "yes" : "no");
	attr = attr + ",scrollbars=" + (scrollbars ? "yes" : "no");
	attr = attr + ",menubar=" + (menubar ? "yes" : "no");
	attr = attr + ",toolbar=" + (toolbar ? "yes" : "no");
	attr = attr + ",directories=" + (directories ? "yes" : "no");
	attr = attr + ",location=" + (location ? "yes" : "no");
	attr = attr + ",status=" + (status ? "yes" : "no");		
		
	return window.open(url,wname,attr);
}

function jump_to(x)
{
	loc = document.location.href;
	loc = loc.split("/");
	loc[loc.length -2] = x;
	loc = loc.join("/");
	document.location.href = loc;
	
	return false;
}