function oeffneFenster()
{
	f = window.open("/shop/javaScript_fenster.htm","Shopfenster","height=219,width=382,locationbar=no,menubar=no,status=no,resizable=no,screenx=100,screeny=50,scrollbars=no");
	f.focus();
}

function fenster(seite,hoch,breit)
{
	f = window.open(seite,"JsFenster","height="+hoch+",width="+breit+",locationbar=no,menubar=no,status=no,resizable=no,screenx=100,screeny=50,scrollbars=yes");
	f.focus();
}

function warenkorbAnsehen()
{
	parent.window.opener.document.location.href="/cgi-bin/webshop.pl?t=tembaske2";
	parent.window.opener.focus();
	window.close(self);
}

function onFocusCheckEntry(which, cont, colorChange) 
{
	if(cont !=  "dummy" && which.value == cont) 
	{
		which.value = "";
	}
}

function onBlurCheckEntry(which, cont, colorChange) 
{
	if(cont !=  "dummy" && which.value == '') 
	{
		which.value = cont;
	}
}

