
function showMe(id,path,styleType,imgName1,imgName2) {
	
	if (!styleType) var styleType = "block";
	if (!imgName1)  var imgName1  = "up.gif";
	if (!imgName2)  var imgName2  = "down.gif";
	if(document.getElementById(id) && document.getElementById(id).style.display == "none") {
		document.getElementById(id).style.display = styleType;
		if (path != "") {
			document.getElementById(id+"_img").src = path + imgName2;
		}
		return;
	}
	if(document.getElementById(id) && document.getElementById(id).style.display == styleType) {
		document.getElementById(id).style.display = "none";
		if (path != "") document.getElementById(id+"_img").src = path + imgName1;
	}
}

function showHide(id) {

	if(document.getElementById(id) && document.getElementById(id).style.display == "none") {
		document.getElementById(id).style.display = "block";
		return;
	}
	if(document.getElementById(id) && document.getElementById(id).style.display == "block") {
		document.getElementById(id).style.display = "none";
		return;
	}
} 


function openHelp (anch) {
	var url = "/help.php";
	if (anch != '') url = url + "#" + anch;
	w=window.open(url,'shopomaniaHelp','width=550,height=450,scrollbars=yes,resizable=yes');
	w.focus();
}


