function showForm() {
document.getElementById('uzdanga').style.display='block';
document.getElementById("forma").style.display='block';
document.body.style.overflow = "hidden";
if (navigator.appName.indexOf('Explorer')>0) document.getElementsByTagName("html")[0].style.overflow = "hidden";

obj = document.getElementsByTagName("object");
for (i=0; i<=obj.length; i++) if (obj[i]) obj[i].style.display = "none";
}

function hideForm() {
document.getElementById('uzdanga').style.display='none';
document.getElementById("forma").style.display='none';
if (navigator.appName.indexOf('Explorer')>0) document.getElementsByTagName("html")[0].style.overflowY = "auto";
document.body.style.overflow = "auto";


obj = document.getElementsByTagName("object");
for (i=0; i<=obj.length; i++) if (obj[i]) obj[i].style.display = "block";
}

function tikrinti() {

if (document.getElementById("email").value || document.getElementById("telefonas").value) {
	alert("Užsakymas sėkmingai išsiųstas!");
	return true;
}
else {
	alert("Įveskite el.pašto adresą arba savo telefono numerį.");
	return false;
}
}

function showPhoto(productID) {
window.open("/showphotos.php?productID="+productID, "photo", "location=0, status=0, scrollbars=1, width=850, height=600");
}
                  