//	################################################################
//	[style productions] - Toolbox v.1
//	################################################################

// open new window
// <a href="Javascript:show('index.html', 'window', '400', '400', 'no', 'no')">Test</a>
function show(source, name, width, height, resizable, scrollbars) {
	window.open(source, name, "width=" + width + ",height=" + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars + "");
}

function toggle(item) {
	if (document.getElementById(item).style.display == 'none' || document.getElementById(item).style.display == '') {
		document.getElementById(item).style.display = 'block';
	}
	else {
		document.getElementById(item).style.display = 'none'
	}
}
