function detalji(id){
  var mywin=window.open("/ponuda/detaljno.php?id="+id,'win','toolbar=0,location=0,resizable=0,directories=0,scrollbars=1,status=1,menubar=0,width=461,height=522, top=50,left=50');
  mywin.focus();
  return false;
}
function frmElementValue(element){
	switch (element.type){
		case "text":
		case "password":
			return element.value; break;
		case "select-one":
		  return element.options[element.selectedIndex].value; break;
	}
}
var slike=new Array();
var ind_trenutne_slike=-1;
function slika(id, name){
  this.id=id;
  this.name=name;
  this.toString=function(width){
  if(typeof(width)=="undefined"){
  /* prikaze celu sliku */
    return "<img src='/slike/"+this.id+"/"+this.name+"' />";
  } else {
    return "<img src='/slike/index.php?fld="+this.id+"&width="+width+"&img="+this.name+"' width='"+width+"' />";
  }
  }
}
function ShowPicture(link){
  var picwin=window.open(link.href,'pic','toolbar=0,location=0,resizable=0,directories=0,scrollbars=1,status=1,menubar=0,width=740,height=560, top=20,left=20');
  picwin.focus();
  return false;
}

