function toggleDivDisplay(divId) {
	if (document.getElementById(divId).style.display == "none")
		document.getElementById(divId).style.display = "block";
	else
		document.getElementById(divId).style.display = "none";
}

function showDiv(divId) {
	document.getElementById(divId).style.display = "block";
}

function hideDiv(divId) {
	document.getElementById(divId).style.display = "none";
}

var popupWindow = false; 
function openPopup(url,w,h) {
	x = screen.width/2-w/2;
	y = screen.height/2-h/2;
	if (popupWindow) popupWindow.close();
    popupWindow=window.open(url,'ny','toolbar=no,copyhistory=no,location=no,' + 'directories=no,status=no,menubar=no,scrollbars=no,' +'resizable=no,width=' + w + ',height=' + h + ',top=' + y +',left=' + x);
}

function openPopupPay(url,w,h) {
	x = screen.width/2-w/2;
	y = screen.height/2-h/2;
	if (popupWindow) popupWindow.close();
    popupWindow=window.open(url,'ny','toolbar=no,copyhistory=no,location=yes,' + 'directories=no,status=yes,menubar=no,scrollbars=yes,' +'resizable=no,width=' + w + ',height=' + h + ',top=' + y +',left=' + x);
}

function openCloseProducts(ids,img_id)
{
	if(ids!='')
	{
		arr_ids = ids.split(",")
		for(i=0; i<arr_ids.length; i++)
		{
			if(document.getElementById(arr_ids[i]))
			{
				if(document.getElementById(arr_ids[i]).style.display=='none')
				{
					document.getElementById(arr_ids[i]).style.display='block';
				}
				else
				{
					document.getElementById(arr_ids[i]).style.display='none';
				}
			}
		}
	}
	if(document.getElementById(img_id).src.indexOf('/iconMiniOpen.jpg')>0)
	{
		document.getElementById(img_id).src='/images/iconMiniClosed.jpg';
	}
	else
	{
		document.getElementById(img_id).src='/images/iconMiniOpen.jpg';
	}
}