var showed = '';
var hidden = "hidden";
	function show(id) {
		if (showed!='') document.getElementById('pod'+showed).style.visibility = 'hidden';
		showed = id;
		subMenu = document.getElementById('pod'+id);		
		menu = document.getElementById(id);
			
		subMenu.style.visibility = 'visible';
		
	}
	function hidpod(id) {
		s = setTimeout("document.getElementById('"+id+"').style.visibility = 'hidden'", 300);
	}
	function openPW (name, x, y) {
		window.open('/shop/product/'+name+'/photo/', 'imageWindow', 
						'menubar=0,location=0,toolbar=0,personalbar=0,status=0,scrollbars=1,width='+x+',height='+y);
		return false;
	}
	function resizePW (name, x, y) {
		window.resizeTo(x,y);
		document.location.href('/shop/product/'+name+'/photo/');
		return false;
	}



function load(id) {
	if ($("link"+id).innerHTML.indexOf("[+]") >= 0) { 
		$("link"+id).innerHTML = $("link"+id).innerHTML.replace("[+] Посмотреть", "[—] Скрыть");
		$("holder"+id).style.display = 'table-row';
	} else {
		$("link"+id).innerHTML = $("link"+id).innerHTML.replace("[—] Скрыть", "[+] Посмотреть");
		$("holder"+id).style.display = 'none';
	}
}

function $(id) {
	return document.getElementById(id);
}








