﻿function toggleSubmenu(id) {
	var submenu = document.getElementById(id);
	if (submenu == null)
		return;
	submenu.style.display = submenu.style.display == "none" ? "block" : "none";
}

function OpenDetail(url, width, height, scroll) {
	width += scroll ? 40 : 30;
	height += 30;
	scroll = scroll ? "yes" : "no";
	window.open(url, "", "resizable,scrollbars=" + scroll + ",width=" + width + ",height=" + height);
	return false;
}

