function askAnmeldung()
{
	var answ = confirm( "Sie sind noch nicht angemeldet!\nUm einen Eintrag auzunehmen, muessen Sie sich anmelden!" );
	if( answ == true )
	{
		window.top.location.href = 'index.php?action=abmelden';
	}
}

function Show_Produktdetail( id )
{
   var s = new Date();
   pro = window.open("produktdetail.php?auc_aid="+id+"&x="+s.getUTCMilliseconds(),"pro","toolbar=0,location=0,status=0,menubar=0,scrollbars,resizable=0,width=500,height=250");
   pro.focus();
}

function Show_Angebot( id )
{
   var s = new Date();
   content = window.open("angebot.php?auc_aid="+id+"&x="+escape( s.toUTCString() ),"content");
}

function Show_Gebote( id )
{
	var s = new Date();
	var i;
	
	i = s.getUTCMilliseconds();
	// alert( i );
	
	geb = window.open("gebote.php?auc_aid="+id+"&x="+s.getUTCMilliseconds(),"geb_" + id,"toolbar=0,location=0,status=0,menubar=0,scrollbars,resizable=1,width=380,height=380");
	geb.focus();
}

function Show_Angebot( id, acttype )
{
   var s = new Date();
   content = window.open("angebot.php?auc_aid="+id+"&act_type="+acttype+"&x="+escape( s.toUTCString() ),"content");
   content.focus();
}

function showWunsch( kat, id )
{
	var s = new Date();
	var i;
	
	i = s.getUTCMilliseconds();
	// alert( i );
	
	content = window.open("addwunsch.php?kat="+kat+"&id="+id+"&x="+s.getUTCMilliseconds(),"content" );
	content.focus();
}

function showWunschZettel( kat, id )
{
	var s = new Date();
	var i;
	
	i = s.getUTCMilliseconds();
	// alert( i );
	if( confirm( "Diese Nummer ist fuer die Auktion reserviert. Wollen Sie diese auf Ihren Wunschzettel nehmen?" ) )
	{
		content = window.open("wunschzettel.php?art="+kat+"&wkennzeichen="+id+"&x="+s.getUTCMilliseconds(),"content" );
		content.focus();
	}
}

function showDirectOrder( kat, id )
{
	var s = new Date();
	var i;
	
	i = s.getUTCMilliseconds();
	// alert( i );
	
	content = window.open("adddirectorder.php?kat="+kat+"&id="+id+"&x="+s.getUTCMilliseconds(),"content" );
	content.focus();
}


function Show_AlleAuktionen()
{
   var s = new Date();
   allauction = window.open("alle_gebote.php?x=" + escape( s.toUTCString() ), 
                            'allauction',
 						    "toolbar=0,location=0, status=0,menubar=0,scrollbars,resizable=1, width=500,height=350" );
	allauction.focus();
}

function openHelp( id )
{
   var s = new Date();
   help = window.open("hilfetexte.php?id=" + id + "&x=" + escape( s.toUTCString() ), 
                            'help', 'toolbar=0,location=0,status=0,menubar=0,scrollbars,resizable=1,width=500,height=350' );
   help.focus();
}

function Show_Verkaufsinfo()
{
   var s = new Date();
   ver = window.open("verkaufsinfo.php?x="+s.getUTCMilliseconds(),"ver","toolbar=0,location=0,status=0,menubar=0,scrollbars,resizable=0,width=450,height=250");
   ver.focus();
}

function Show_AGB()
{
   var s = new Date();
   agb = window.open("agb.php?&x="+escape( s.toUTCString()),"_blank","height=500,width=500,menu=no,scrollbars,menubar=0,status=0");
   agb.focus();
}

function Show_FAQ()
{
   var s = new Date();
   agb = window.open("hilfetexte.php?id=FAQ&x="+escape( s.toUTCString()),"_blank","height=500,width=500,menu=no,scrollbars,menubar=0,status=0");
   agb.focus();
}

function Show_Kontakt()
{
   var s = new Date();
   kontakt = window.open("kontakt.php?&x="+escape( s.toUTCString()),"_blank","height=500,width=500,menu=no,scrollbars,menubar=0,status=0");
   kontakt.focus();
}



