﻿// JScript File


//--To hide and display Category Description in ShowCat.aspx

function hideshow(which,which1){


if (!document.getElementById)
return

if (which1.style.display=="none" || which.style.display=="")
which.style.display="none"
which1.style.display="block"

}


function hideshow1(which,which1){

if (!document.getElementById)
return
if (which.style.display=="none")
which.style.display="block"
which1.style.display="none"

}

//--Popup for Delivery in Show Products.aspx

function popupDelivery()
{

	window.open('http://www.techmania.ch/popupDeliveryTimes.aspx', 'StockInfo', 'width=450,height=250');

}

	function openWindow(url, name, breite, hoehe, left, top, scrollbar)
	{
		left = ((screen.width - breite) / 2);
		top = ((screen.height - hoehe) / 2);
		popUp = window.open(url, name, "toolbar=no,menubar=no,status=yes,scrollbars=" + scrollbar + ",width=" + breite + ",height=" + hoehe + ",left=" + parseInt(left) + ",top=" + parseInt(top));
		popUp.focus();
	}




