#!/bin/sh

Dialog() { 
	Xdialog --title "Download Browser" --yesno "If you need a browser now, the Seamonkey browser suite is already included. 
Firefox can be installed with the Gslapt package manager, or you can try the latest version from Mozilla. 
If you click yes, Update-Firefox (found in the Control Panel) will download the latest version of Firefox from Mozilla." 0 0 
}


if Dialog ;then
/usr/sbin/update-firefox.sh &
fi
