function hs(itemID, iState) {
	htmlItem = document.getElementById(itemID);
	if (htmlItem) {
		if (iState == 0) {  // hide
			htmlItem.style.display = 'none';
		}
		else {  // show
			htmlItem.style.display = '';
		}
	}
}

function popitup(url) {
	newwindow=window.open(url,'Snappy Studio &reg; Terms &amp; Conditions of Business','height=500,width=750');
	if (window.focus) {newwindow.focus()}
	return false;
}