function submitform()
{
	document.form_add_email.submit();
}

function pakkesporing()
{
	var pakkenr = document.forms.form_add_email.pakkenr.value;
  	OpenWindow=window.open("http://62.148.47.152/posten/PagesKM/KMSporingInternett.aspx?ShipmentNumber=" + pakkenr ,"_pakkesporing","width=950,height=650,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes");
}

function advertise(advertiseid)
{
  	OpenWindow=window.open("open_advertise.php?advertiseid=" + advertiseid);
}

function display(x)
{
  var win = window.open();
  for (var i in x) win.document.write(i+' = '+x[i]+'<br>');
}

// ----- Show Aux -----

function show_aux(parent, child)
{
  var p = document.getElementById(parent);
  var c = document.getElementById(child );

  var top  = (c["position"] == "y") ? p.offsetHeight+2 : 0;
  var left = (c["position"] == "x") ? p.offsetWidth +2 : 0;

  for (; p; p = p.offsetParent)
  {
    top  += p.offsetTop;
    left += p.offsetLeft;
  }

  c.style.position   = "absolute";
  c.style.top        = top +'px';
  c.style.left       = left+'px';
  c.style.visibility = "visible";
}

// ----- Show -----

function show()
{
  var p = document.getElementById(this["parent"]);
  var c = document.getElementById(this["child" ]);

  p.style.color = 'FF0000';
  p.style.background = 'FFFFFF';
  
  show_aux(p.id, c.id);

  clearTimeout(c["timeout"]);
}

// ----- Hide -----

function hide()
{
  var p = document.getElementById(this["parent"]);
  var c = document.getElementById(this["child"]);

  p.style.color = 'FFFFFF';
  p.style.background = 'none';

  c["timeout"] = setTimeout("document.getElementById('"+c.id+"').style.visibility = 'hidden'", 20);
}



function attach(parent, child, position, cursor)
{
  var p = document.getElementById(parent);
  var c = document.getElementById(child);

  p["parent"]     = p.id;
  c["parent"]     = p.id;
  p["child"]      = c.id;
  c["child"]      = c.id;
  p["position"]   = position;
  c["position"]   = position;

  c.style.position   = "absolute";
  c.style.visibility = "hidden";

  p.style.cursor = cursor;
  p.onmouseover = show;
  p.onmouseout  = hide;
  c.onmouseover = show;
  c.onmouseout  = hide;
}


function show_picture(pageid,pic,max){
	OpenWindow=window.open("show_pictures.php?pageid="+pageid+"&pic="+pic+"&max="+max, "show_pictures","height=850, width=1000,toolbar=no,scrollbars=no,menubar=no");
	OpenWindow.document.close();
	self.name="main";
}


function pagestart() {
	document.form_add_email.mailadr.focus();
	rotatePicture();
}

var pictureNum = 1;
function rotatePicture() {
	if (++pictureNum > 12) {
		pictureNum = 2;
	}

	document.form_add_email.mhfotoslide.src = "images/slideshow/" + pictureNum + ".jpg";
	window.setTimeout("rotatePicture()",4000);
}


