//
// Pop-up window utility functions.
//

var theWindow = null;
function openWindow(e, url, w, h, features)
{		
	if(w==0 || h==0) {
		// set minimal site
		w = 100; h = 100;
	}

	if(features=='') {	
		features = 'dependent=no,\
		location=no,\
		menubar=no,\
		resizable=yes,\
		scrollbars=yes,\
		status=no,\
		toolbar=no,';				
	}	
	features += 'width='+w+',height='+h;
	theWindow = window.open(url, '', features);
	
	if(e==null) {
		e = window.event; // old IE versions...
	}
	
	//e.stopPropagation(); // broken?
	
	return false;
}
 