var the_images = ''
var Zoom = ''

function HentvarenavnIllustrationsreturn(returnvalue){
//alert(returnvalue)
the_images = new Array()
var returnvalue = unescape(returnvalue)
var theImage =''
var splitvalue = returnvalue.split('¬')
if (splitvalue[0]){
document.getElementById("divIco").innerHTML = unescape(splitvalue[0])
}else{
var Ico = '<IMG SRC="../images/ikon_foto.gif"'
Ico+= ' Style="cursor:hand" Onclick="OpenImgEditor(\'\')"'
Ico+= '>'
document.getElementById("divIco").innerHTML = Ico
}


if(splitvalue[1]){
var thesplitimages = splitvalue[1].split('~~')
for(loop = 0; loop<thesplitimages.length; loop++){
the_images[loop] = strIllustrationsUrl+''+thesplitimages[loop]
the_imag=new Image()
the_imag.src = the_images[loop]
}
theImage = '<IMG id=cImg src='+the_images[0]+'>'
}
document.getElementById("divImg").innerHTML = theImage
//Henter fanebladsindhold
//fetchAssTabctrl()
}



function swapImg(index,zoom){
Zoom = zoom
if(document.getElementById("cImg").src!=the_images[index]){
document.getElementById("cImg").src=the_images[index]
}
}
var pop=''

function locateZoom(){
 if(Zoom){
  ZoomImg(Zoom) 
 }
}

function ZoomImg(img){
var theSite = strEhandelURL+'/imgZoom.asp?img='+escape(img)
pop=open(theSite,'Zoom',"toolbar=0,status=0,menubar=no,scrollbars=yes,resizable=no,copyhistory=0,width=50,height=50,top=0,left=0")
pop.blur()
}

