function change_site() {
var site = document.myform.auswahl.selectedIndex;
document.form.sortierung.value = site;
document.form.submit();
}

function in_warenkorb(prod_id){
	document.form_wkorb.prod_id.value = prod_id;
	document.form_wkorb.submit();

}

function warenkorb_leeren(){
	document.form_warenkorb.warenkorb_loeschen.value = 1;
	document.form_warenkorb.submit();
}

function adresse_eingeben(){
	document.form_warenkorb.adresse_eingegeben.value = 1;
	document.form_warenkorb.in_wkorb.value = 1;
	document.form_warenkorb.submit();
}

function bestellung_abschliessen(){
	document.form_warenkorb.bestellung_verbuchen.value = 1;
	document.form_warenkorb.submit();
}

function warenkorb_aufrufen(){
	document.form_warenkorb_anzeigen.submit();
}	

function bestelluebersicht(){
	document.form_warenkorb.submit();
}	

function warenkorb_inhalt_aendern(){
	document.form_warenkorb.in_wkorb.value = 1;
	document.form_warenkorb.submit();
}

function search_marke_nav() {
//var site = document.my_search_marke.marke.selected;
document.my_search_marke.submit();
}

function search_marke_startseite() {
//var site = document.my_search_marke.marke.selected;
document.my_search_marke_startseite.submit();
}

function search_vis_nav() {
//var site = document.my_search_vis.viskositaet.selected;
document.my_search_vis.submit();
}

function search_vis_startseite() {
//var site = document.my_search_vis.viskositaet.selected;
document.my_search_vis_startseite.submit();
}

function warenkorb_artikel_loeschen(id,nr){
	document.form_warenkorb_artikel_del.id_nr.value = id;
	document.form_warenkorb_artikel_del.korrektur.value = document.form_warenkorb.elements[nr].value;
	document.form_warenkorb_artikel_del.submit();
}	

function neues_fenster(datei,height,width)
{
	nf = window.open("inc/"+datei,"Admin","width="+width+",height="+height+",left=50,top=50,scrollbars=yes");
}

function open_big_img(datei)
{
	var picSizeW = 400;
	var picSizeH = 500;	
	var picPosX = picSizeW / 2;
	var picPosY = picSizeH / 2;
	var doPopUpX = (screen.width/2)-picPosX;
	var doPopUpY = (screen.height/2)-picPosY;
	var pos = "left="+doPopUpX+",top="+doPopUpY;
	
	doPopUpWindow = window.open("http://www.oelshop24.de/splash.php?path="+datei,"Oelshop24","width="+picSizeW+",height="+picSizeH+",resizable=0,scrollbar=no,location=no,"+pos);
}

function openoelfinder(datei,height,width)
{
	nf = window.open(datei,"Admin","width="+width+",height="+height+",left=50,top=50,scrollbars=yes");
}

function castrol()
{
	MeinFenster = window.open("http://www.oelshop24.de/inc/castrol.htm", "Castrol", "width=500,height=500,scrollbars=yes");
}

function sofortueberweisung() 
{
	NewWindow = window.open("https://www.payment-network.com/de/user/sofortueberweisung-so-funktionierts.html", "Sofortueberweisung", "width=1000,height=500,scrollbars=yes,location=no");
}

function changeIt(imgPathBig,imgPathMed)
{
	var obj = document.getElementById('image1');
	var imgTag = "<a href=\"javascript:open_big_img('"+imgPathBig+"');\" rel=\"lightbox\" title=\"\"><img src=\""+imgPathMed+"\" border=\"0\"></a>";
	obj.innerHTML = imgTag;
	return; 
}