/*
JavaScript modulis mb.vu.lt 
Autorius: Rolandas Paulauskas,  2008-05-10
www.orbcube.eu rolandas@orbcube.eu
*/



function getUrlParam(strParamName){
  var strReturn = "";
  var strHref = window.location.href;
  var strQueryString = strHref.substr(strHref.indexOf("/")).toLowerCase();
  var aQueryString = strQueryString.split("/");
   return aQueryString[aQueryString.length-1];
}

function popupas(picassrc,name,w,h) {
	if (window.newWindow) newWindow.close();
	newWindow = window.open("","Nuotrauka","width="+w+",height="+h+",left=200,top=200");
	newWindow.document.open();
	newWindow.document.write("<html><head><title>"+name+"</title> <link rel=\"stylesheet\" type=\"text/css\" href=\"stylePopup.css\"></head><body onclick=\"window.close()\">");
    newWindow.document.write("<img src=\""+picassrc+"\" width=\""+w+"\" height=\""+h+"\" alt=\"\">");
	newWindow.document.write("</body></html>");
	newWindow.focus();
}

function trinti() {
	document.getElementById('imone').value = "";
	document.getElementById('vardas').value = "";
	document.getElementById('elpastas').value = "";
	document.getElementById('tema').value = "";
	document.getElementById('tekstas').value = "";
}

