if (document.layers){
    window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
    window.onmousedown=rightclick;
    window.onmouseup=rightclick;
    function rightclick(e){
	    if (e.which == 3){
		    open("http://www.freecams.helpme.at","","scrollbars=no,menubar=no,toolbar=no,resizable=no,height=240,width=320");
	    	return false;
		}
		else{
	    	return true; 
	    }
    }
}

if (document.all){
    function clickM(){
	    if (event.button==2)
			open("http://www.freecams.helpme.at","","scrollbars=no,menubar=no,toolbar=no,resizable=no,height=240,width=320");
    
	    if (event.button==3)
			open("http://www.freecams.helpme.at","","scrollbars=no,menubar=no,toolbar=no,resizable=no,height=240,width=320");
	}
	document.onmousedown=clickM
}

function popup(url,name,einstellungen)
{
window.open(url,name,einstellungen);
}

function favorite()
{
var bookmarkurl="http://www.helpme.at"
var bookmarktitle="Erofinder!"
if(document.all)
{
window.external.AddFavorite(bookmarkurl,bookmarktitle);
}
}