<!--

var beginstring = "scrollbars=yes,toolbars=no,directories=no,resizable=yes,height=";

var	optionstring = "";
function openWin(x, w, h) {
	// x: navnet på et HTML/ASP dokument
	// w: bredden på billedet i dokument x
	// h: højden på billedet i dokument x
	optionstring = beginstring + (h+100) + ",width=" + (w+40)
	
	window.open(x, "ImageView2", optionstring);
}	

// -->


