function smShow(id) {
	document.getElementById(id).style.display = '';
}
function smHide(id) {
	document.getElementById(id).style.display = 'none';
}
function smOver(id,p) {
	document.getElementById(id).style.backgroundColor = "#86bb3c";
	document.getElementById(id).style.color = "#ffffff";
	document.getElementById(p).style.display = '';
}
function smOut(id,p) {
	document.getElementById(id).style.backgroundColor = "";
	document.getElementById(id).style.color = "#303030";
	document.getElementById(p).style.display = 'none';
}
function getURL(url) {
	window.location.href=url;
}
function yPos (pos) {
	pos = pos +"px";
	document.getElementById('subcont').style.paddingTop = pos
}
var oldId;
function showText (id) {
	if (oldId) {
	document.getElementById(oldId).style.display = 'none';
	}
	document.getElementById(id).style.display = ''
	oldId = id;
}
var ertek;
function showPrice() {
	ertek = document.getElementById('jumpMenu').value
	document.getElementById('priceText').innerHTML=ertek;
}
function showUploadForm() {

	document.getElementById('ulForm').style.display = ''
}
function showBorders() {
	document.getElementById('borders').style.display = ''
}
function showDetails() {
	document.getElementById('details').style.display = ''
}
function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite
      ("http://www.fotoszobor.hu","Fotószobor - Fotóflip")
      }
  }
 function shopOver(id) {
	document.getElementById(id).style.backgroundColor = "#e3f3cd";
	oldId = id
}
function shopOut() {
	document.getElementById(oldId).style.backgroundColor = "";
}
function alertShop1() {
	alert ("Ide kell majd hogy folytatja-e vagy visszadobja a shop elejére");
	getURL('webshop.php')
}




