function showUploadProgress()
{
	var newDiv = document.body.appendChild(document.createElement("DIV"))
	newDiv.style.position = "absolute"
	newDiv.style.top = "120px"
	newDiv.style.left = "300px"
	newDiv.style.backgroundColor = "#d4d0c8"
	newDiv.style.color = "blue"
	newDiv.style.border = "3px outset blue"
	newDiv.style.fontSize = "18px"
	newDiv.style.lineHeight = "15px"
	newDiv.style.textAlign = "center"
	newDiv.style.padding = "15px"
	newDiv.style.width = "200px"
	newDiv.style.height = "20px"
	newDiv.style.overflow = "visible"
	newDiv.style.fontWeight = "bold"

	newDiv.innerHTML = "טוען תמונה...<br><br><img src=\"/images/loading.gif\">"

	return true
}
function toggleFaq(e)
{
	objRef = e.srcElement || e.target

	if(objRef.className == "faq_question")
	{
		objRef = objRef.getElementsByTagName("DIV")[0]
		objRef.style.display = objRef.style.display == "block" ? "none":"block"
	}
}
function $(s)
{
	return document.getElementById(s)
}
function addToFavorite()
{ 
	try
   	{
   		external.AddFavorite("http://www.magnipic.co.il/","Magnipic - art your space")
   	}
   	catch(e)
    { 
    	alert("פעולה זו אינה זמינה בפדפן זה.")
   	} 

} 
function openItem(itemId)
{
	open("item.asp?itemId=" + itemId,'item','width=400,height=400,scrollbars=yes')
}
function openArtist(artistId)
{
	open("artist.asp?artistId=" + artistId,'item','width=400,height=400,scrollbars=yes')
}
function menuClick(objRef)
{
	objRef.className = "click"
}
function renderPrice(num)
{
	if(typeof num != "number")
		num = ""
	else
	{
		num = num.toFixed(2).split("").reverse().join("")
		num = num.replace(/(\d{3})(?=\d+)/g,"$1,")
		num = num.split("").reverse().join("")
	}
	return num + " ₪"
}
function help(anchor)
{
	if(typeof anchor == "number")
		open("/_im/canvas/help.asp?p=" + anchor,'help','width=400,height=400,scrollbars=yes')
	else
		open("/_im/canvas/help.asp?a=" + anchor,'help','width=400,height=400,scrollbars=yes')
	
}