
function popup(url,name,width,height,top,left,scrollbars,toolbar,menubar,resizable,status,location,directories,copyhistory,dependent)
	{
	/*
	<a href=\"javascript:popup('http://www.heise.de','Details',760,700)\">Popup</a>
	*/
	temp = window.open(url,name,"toolbar=" + toolbar + ",menubar=" + menubar + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",status=" + status + ",location=" + location + ",directories=" + directories + ",copyhistory=" + copyhistory + ",width=" +  width + ",height=" + height + ",screenX=" + top + ",screenY=" + left + ",top=" + top + ",left=" + left + ",dependent=" + dependent);
	temp.focus();
	}

