// NAVIGATION.JS ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// RESET DEFAULT ENTRY IN FORM FIELDS START ////////////////////////////////////////////////////////////////////////////////////////////
function clearDefaultandCSS(el) {
if (el.defaultValue==el.value) el.value = ""
if (el.style) el.style.cssText = ""
}
// RESET DEFAULT ENTRY IN FORM FIELDS END //////////////////////////////////////////////////////////////////////////////////////////////
 
 
// OPENS DOCUMENT [ONLY A VISUAL HOVER ADJUSTMENT] START ///////////////////////////////////////////////////////////////////////////////
function myAccount()
{
self.location.href('my_account_profile_01.htm');
return true;
}
function myAccountFavorites()
{
self.location.href('my_account_favorites_01.htm');
return true;
}
function myAccountArticles()
{
self.location.href('my_account_articles_01.htm');
return true;
}
function myAccountComments()
{
self.location.href('my_account_comments_01.htm');
return true;
}
function myAccountSearchresults()
{
self.location.href('my_account_searchresults_01.htm');
return true;
}
function myAccountNotifications()
{
self.location.href('my_account_notifications_01.htm');
return true;
}
function myAccountNewsletter()
{
self.location.href('my_account_newsletter_01.htm');
return true;
}
function myAccountContracts()
{
self.location.href('my_account_contracts_01.htm');
return true;
}
function myAccountInterests()
{
self.location.href('my_account_interests_01.htm');
return true;
}
// OPENS DOCUMENT [ONLY A VISUAL HOVER ADJUSTMENT] END /////////////////////////////////////////////////////////////////////////////////
// NAVIGATION.JS ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



function loadPage(display)
{
location.href = display.options[display.selectedIndex].value
}

function loadPage(sorting)
{
location.href = sorting.options[sorting.selectedIndex].value
}











function verschieben()
{
for (i=0;i<document.ausgangsliste.ausgangsliste.length;i++)
{
if (document.ausgangsliste.ausgangsliste.options[i].selected)
{
neuerEintrag = new
Option(document.ausgangsliste.ausgangsliste.options[i].value,document.ausgangsliste.ausgangsliste.options[i].value,false,true);
document.zielliste.zielliste.options[document.zielliste.zielliste.length] = neuerEintrag;
document.ausgangsliste.ausgangsliste.options[i].value = '';
}
}
ausgangseintragentfernen();
}
function ausgangseintragentfernen()
{
for (h=document.ausgangsliste.ausgangsliste.length-1;h>(-1);h--)
{
if (document.ausgangsliste.ausgangsliste.options[h].value=='')
{
document.ausgangsliste.ausgangsliste.options[h] = null;
}
}
}
function zurueckschieben()
{
for (j=0;j<document.zielliste.zielliste.length;j++)
{
if (document.zielliste.zielliste.options[j].selected)
{
neuerEintrag = new
Option(document.zielliste.zielliste.options[j].value,document.zielliste.zielliste.options[j].value,false,true);
document.ausgangsliste.ausgangsliste.options[document.ausgangsliste.ausgangsliste.length] = neuerEintrag;
document.zielliste.zielliste.options[j].value = '';
}
}
zieleintragentfernen();
}
function zieleintragentfernen()
{
for (g=document.zielliste.zielliste.length-1;g>(-1);g--)
{
if (document.zielliste.zielliste.options[g].value=='')
{
document.zielliste.zielliste.options[g] = null;
}
}
}