var pfadname
var mhost
var mlink
pfadname = window.location.pathname;
mhost = window.location.host;
mlink = mhost + pfadname;

function changeOption(URL)
{
	location.href = URL;
}

/* Schreibe den Favoriten Link nur           */
/* wenn der Browser ein IE ist               */
/* diese Funktion löst die callFavoriten aus */
function writeFavoriten(imgdepth)
{
	var ie, pfad;
	ie = (navigator.appName.indexOf("Microsoft")) ? false : true
	if(ie)
	{
		pfad = ''
		for (i=1; i<=imgdepth; i++) {
			pfad += '../'
		}
		document.write('<tr>');
		document.write('  <td><img src="' + pfad + 'images/pixel.gif" width="12" height="1" alt="" /></td>');
		document.write('  <td colspan="2"><a class="add" href="javascript:callFavoriten();"><img src="' + pfad + 'images/favoriten.gif" width="20" height="12" border="0" alt="Add to favorites"  />Add to favorites</a></td>');
		document.write('</tr>');
	}
}


/* Die Seite zu den Favoriten  hinzufügen */
function callFavoriten()
{
	if (document.getElementById) 
	{
		seitentitel = document.getElementsByTagName('title')[0].text;
	}
	else 
	{
		seitentitel = 'MPDV - Mikrolab GmbH';
	}

	window.external.AddFavorite('http://' + mlink, seitentitel)
}

/* Hier wird eine eMail mit Betreff <title>  */
/* und URL als Body versendet                */
/* Tell a friend Funktion                    */

function friendFunction()
{
	if (document.getElementById) 
	{
		seitentitel = document.getElementsByTagName('title')[0].text;
	}
	else 
	{
		seitentitel = 'MPDV - Mikrolab GmbH';
	}
	location.href = 'mailto:?subject=' + seitentitel + '&body=http://' + mlink + '';
}

