function opw(url,x,y,winName)
{
if (url == null || x == null || y == null || winName == null)
	{
	alert ('Missing parameter! The following parameters are needed: URL(string), width, height(integer), window name(string).');
	}
else
	{
	noww = new Date();
	if (winName != null)
		{
		aWindow = winName;
		}
	else
		{
		aWindow = noww.getTime();
		}
	para="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=NO,resizable=no,width="+x+",height="+y;
	newWindow = window.open(url,aWindow,para);
	newWindow.focus();
	}
}

function opwDist(url)
{
para="toolbar=no,location=no,directories=no,status=no,menubar=1,scrollbars=Yes,resizable=no,width=410,height=400";
newWindow = window.open(url,'Distribution',para);
newWindow.focus();
}

function jumpMenu(targ,selObj,restore)
{
if (selObj.options[selObj.selectedIndex].value != ""){
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");}
if (restore) selObj.selectedIndex=0;
}

function opwin(url,x,y,winName)
{

if ((navigator.platform == 'MacPPC') && (navigator.appName == 'Microsoft Internet Explorer'))
{
x = x - 16;
y = y - 16;
}

	para="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=NO,noresize,resizable=no,width="+x+",height="+y;
	newWindow = window.open(url,winName,para);
	newWindow.focus();

}

function crypt(name) {
	document.write('<a href=\"mailto:' + name + '@' + 'pharma' + '-' + 'test' + '.' + 'de' + '\">');
	document.write(name + '@' + 'pharma' + '-' + 'test' + '.' + 'de' + '</a>');
}