function LoadGallery(pictureName,imageFile)
      {
			if (document.all)
  			{
				document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
				document.getElementById(pictureName).filters.blendTrans.Apply();
 			}
			document.getElementById(pictureName).src = imageFile;
			if (document.all)
 			{
 				document.getElementById(pictureName).filters.blendTrans.Play();
			}

      }



function check(form, txt) {
	if (form.value == "") {
		alert(txt);
		return false;
	}
	else return true;
}




function checkform2() {
stat = true;


	if (stat == true) stat = check(document.frm2.velkost, 'Zadajte veľkosť');
	return stat;
}

function checkform1() {
stat = true;


	if (stat == true) stat = check(document.frm1.velkost, 'Zadajte veľkosť');
	return stat;
}

function cursor(obr) {
document.getElementById(obr).style.cursor="pointer";
}






