Is there a way to obtain the domain name of the current page by using javascript in a browser (IE, FireFox, etc) ?
If you are asking about the machine name of the host that served up the current page, you can find that with
window.location.hostname
If you are asking about the name of the machine that is displaying the page in a browser, that information is restricted by browsers for security purposes.