onload=init;
function init() {
	// opdater varekurv
	var objDiv2 = document.getElementById("varekurv");
	if (objDiv2 != null)
	{
		varekurv_displayItems();
	}
	
	// scalering
	with ( document ) {
		for ( var i=0; i<images.length; i+=1 ) {
			with ( images[i] ) {
				style.width=(width*0.0626)+"em";
				style.height=(height*0.0626)+"em";
			}
		}
	}
} // init
function SearchFocus(obj, StandardText) {
	if(obj.value==' '+StandardText) obj.value='';
	obj.style.color="White";
} // SearchEnabled
function SearchBlur(obj, StandardText) {
	if(obj.value=='') {
		obj.value=' '+StandardText;
		obj.style.color="";
	}
} // SearchDisabled

