var OpenWin;
function Start(page) {
	if (OpenWin) {	OpenWin.close(); } 
	OpenWin = window.open(page, "CtrlWindow","toolbar=no,target=top,menubar=no,location=no,width=600,height=700,scrollbars=yes,resizable=yes,left=100,top=100,dependent=yes");
	OpenWin.focus();

}

var OpenPic ;
function showPic(name) {
	url = 'http://www.shop-website.de/Artikelbilder_550x550/'+name+'.jpg';
	if (OpenPic) {	OpenPic.close; }
	OpenPic = window.open(url, "Produktbild","toolbar=no,target=top,menubar=no,location=no,width=570,height=570,scrollbars=no,resizable=no,left=100,top=100,dependent=yes");
	OpenPic.focus();
}

function openMenu(_this) {
	_this.firstChild.style.backgroundColor='#c0c0c0';
	if(_this.firstChild.nextSibling!=null) {
	_this.firstChild.nextSibling.style.visibility='visible';
	_this.firstChild.nextSibling.style.height='auto';
	_this.firstChild.nextSibling.style.backgroundColor='white';
	}
}

function closeMenu(_this) {
	if((_this.firstChild.className!='aktiv') && (_this.firstChild.className!='aktiv ie7_class0')) {
	_this.firstChild.style.backgroundColor='#ddd';
	}
	if(_this.firstChild.nextSibling!=null) {
	_this.firstChild.nextSibling.style.visibility='hidden';
	_this.firstChild.nextSibling.style.height='16px';
	_this.firstChild.nextSibling.style.backgroundColor='white';
	}
}
