function showFlashLayer(swf) {
		PG.ajaxTag('flashLayer', 'getFlash', '{swf:"' + swf + '", width:"790", height:"575"}');
		$('layeroverall').style.display = '';
		$('flashLayer').style.display = '';
}

function closeFlashLayer() {
		PG.ajaxTag('flashLayer', 'getPrefix', '');
		$('layeroverall').style.display = 'none';
		$('flashLayer').style.display = 'none';
}

function toggleProdspecs(element, id, branchetype) {
	$(element).innerHTML = '';
	if (id) {
		PG.ajaxTag(element, 'customer.beltone.getProducts', '{action: "getSpecs", product: "' + id + '", branchetype: "' + branchetype + '"}');
	}
	$(element).toggle();
}