function SetInnerLink()
{
	// run only on Windows
	if ((navigator.appVersion.indexOf("Win")!=-1)&&(navigator.appVersion.indexOf("MSIE")!=-1))
		window.location.href='#element';
	
}
	

function AddAnchor(name,place,delta){

	var theform;

	if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
		theform =document.forms["DefaultDesktop"];
	}
	else {
		theform = document.DefaultDesktop;
	}

	maxAnchor=-1
	anchors=document.anchors
	for (i=0;i<anchors.length;i++) {
		if (anchors[i].name.substring(0,name.length)==name) {maxAnchor++;}
	}
	maxAnchor+=delta
	if (maxAnchor>-1) {
		if (place<0) {place=0;}
		else if (place>maxAnchor) {place=maxAnchor;}
		theform.action+="#"+name+place;
	}
}



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

