// --------------------------------------------------------------
//	gemeinsame Funktionen fuer einheitliche Optik
//
//	J. Leinen 
// $Id: common_funcs.js,v 1.1 2005/05/11 18:25:53 Leinen Exp $
// --------------------------------------------------------------

function displayNewWindow(url, name, width, height, scrollbars, resizable, status) 
{
	myWindow = window.open(url, name, "width=" + width + ",height=" + height + ",scrollbars=" + scrollbars + ",resizable=" + resizable + ",status=" + status);
	myWindow.focus();
}

function displayPopUp(url, name, width, height) 
{
	myWindow = window.open(url, name, "width=" + width + ",height=" + height + ",scrollbars=no,resizable=yes,status=no");
	myWindow.focus();
}

