// Kontakt.js - javascript for kontaktskjema med kontaktinformasjon


function partnerLightbox(status) {
	document.getElementById('light').style.display='block';
	document.getElementById('fade').style.display='block';
	
	if (status == 1) {
		var overskrift = 'Well Technology Group!';
		var tekst = 'A partnership between three market leading companies in oil industry competance, development and production sections.';
		var img = '<a href="http://www.trmed.no/kunder/btuweb"><img src="gfx/btulogo2.png" height="105" width="125" style="float:left; margin:10px 70px;" alt="About BTU" /></a>';
		var img = img + '<a href="http://www.trmed.no/kunder/piweb"><img src="gfx/pilogo2.png" height="105" width="125" style="float:left; margin:10px 70px;" alt="About BTU" /></a>';
		var img = img + '<a href="http://www.trmed.no/kunder/welldecoweb"><img src="gfx/welldecologo2.png" height="105" width="125" style="float:left; margin:10px 70px;" alt="About BTU" /></a>';

}
	
	var div = document.getElementById('light');
	var html = '<a href = "javascript:void(0)" class="lukkFader" onclick = "document.getElementById(\'light\').style.display=\'none\';document.getElementById(\'fade\').style.display=\'none\'"></a>';
	var html = html+ '<img src="gfx/wtglogo.png" height="220" width="800" style="padding:1px; margin:10px 0 10px 0; " alt="Well Technology Group" />';
	var html = html+ "<p class=\"info\">"+tekst+"</p>";
	var html = html+ "<div class=\"img\">"+img+"</p>";
	div.innerHTML = html;
	
}