/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1] = "1.gif"
myimages[2] = "2.gif"
myimages[3] = "3.gif"
myimages[4] = "4.gif"
myimages[5] = "5.gif"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1

document.write('<img src="http://www.dentall.dk/00016/Branding/brand_grafik/sidedesign/venstrebue/'+myimages[ry]+'" && width="167" align="top" border="0">') 
}
random_imglink()