// JavaScript Document
//<script language="JavaScript">
//<!--

function AddNote(varForm)
{
	var nameStr=varForm.statueCart_1_Name_Add.value+ " (Note: "+varForm.noteSelect.value+")";
	varForm.statueCart_1_Name_Add.value=nameStr
	//alert(nameStr);
}
	
function refreshPage(varForm)
{
	varForm.submit();
}

function showPic(imgName,imgFile)//show larger image of statue
{
  var imgStr
  var imgScr
  var width="375", height="400";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow", styleStr);
  var head = '<head><title>'+imgName+'</title></head>';
  var body 

  imgStr = '<img src='+imgFile+'>'//<br>Image shown is the Hand Painted 6 inch size statue<br>'
  body = '<body bgcolor="#990000"><center><br><p>'+imgStr+'<form><input type="button" value="   Close   " onClick="self.close()"></form></center></body>';
  msgWindow.document.write(head + body);
}

function stringToInteger (inputString)
{
  return parseInt(inputString);
}



//-->
//</script>
