/** 
* JavaScript Funktionen by Maddin 
* (c) 2009
* ===============================
*/

function newWindow(url,width,height) {
	newwindow=window.open(url,'name','height='+ height +',width='+ width +',scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}