<!-- hide from JavaScript-challenged browsers
function openWindow(url, width, height, allow_scroll) {
	if(width == 0)
		width = 500;
	
	if(height == 0)
		height = 450;
	
	/*if(allow_scroll == 'undefined')
		alllow_scroll = 'auto';*/
				
popupWin = window.open(url, 'remote', 'toolbar,status,scrollbars,resizable,width=' + width + ',height=' + height + ',left=100,top=25 screenX=100,screenY=25');
if (popupWin.opener == null) popupWin.opener = self; self.name = 'mainwindow';
}
// done hiding -->