// ------------------------------------------------------------------------  //
//  Project:   Hofraete CMS                                                  //
//  Author:    Roland Froehler <webmaster@hofraete.at>                       //
//                                                                           //
//  Copyright: 2009 Die Wirklichen Hofraete                                  //
//  -----------------------------------------------------------------------  //

// utility functions (window open, ...)

function openWindow(Url,title,width,height) {
	// window.open(Url,title,"resizeable=no,scrollbars=no,top=10,left=50,width="+width+",height="+height)
	openWindowResizable(Url,title,width,height,'no');
}

function openWindowResizable(Url,title,width,height,resizable) {
	// window.open(Url,title,"resizable="+resizable+",scrollbars=no,top=10,left=50,width="+width+",height="+height)
		openWindowResizableAndScrollbars(Url,title,width,height,resizable,'no');
}

function openWindowResizableAndScrollbars(Url,title,width,height,resizable,scrollbars) {
	window.open(Url,title,"resizable="+resizable+",scrollbars="+scrollbars+",top=10,left=50,width="+width+",height="+height)
}
