
// JavaScript Document

function popup(URL) {
    xx=window.open('','','toolbar=0,directories=0,location=0,status=0,menubar=0,resizable=0');
    xx.location.href=URL;
}

function click() {
var url = "http://www.omicron.hu";
var title = "Omicron Számítástechnika";
	if (event.button==2)
	 {
	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
	 {
		window.external.AddFavorite (url,title);
	 }
	else
	 {
var msg = "Add hozzá a kedvenceidhez !";
	if(navigator.appName == "Netscape") msg += "\n  (CTRL-D)";
	alert(msg);
	 }
	}
}

document.onmousedown=click 
