// GLOBAL FUNKTIONER TIL SIDEN //

function DisplayImage(id) { window.open('popup/image.asp?id='+ id +'','ImageWindow','width=400,height=400,toolbar=no,scrollbars=no,status=no,copyhistory=no,directories=no') }

function ResizeWindow() { 
	h=document.getElementById('ProductImage').height;
	w=document.getElementById('ProductImage').width;
	window.resizeTo(w+6,h+100);
	}

function ShowPage(id) { 
	window.open('popup/popup.asp?mode=cmsview&page='+ id +'','PopupWindow','width=450,height=400,toolbar=no,scrollbars=yes,status=no,copyhistory=no,directories=no') 
	}

function checkLen(x,y)
		{
		if (y.length==x.maxLength)
			{
			var next=x.tabIndex
			if (next<document.getElementById("myForm").length)
				{
				document.getElementById("myForm").elements[next].focus()
				}
			}
		}

