﻿/* ============================== */
/*  LUSANET WEBSITE               */
/*  VERSIE 4.0.02                 */
/*  2008 KW 1                     */
/* ============================== */
/*  © 2007-2008 LuSaneT Group     */
/*  www.lusanet.nl                */
/* ============================== */
/*  Basis LuSaneT-website         */
/*  includes/javascript/base.js   */
/* ============================== */

// =========================
//  OBJECT CLASS VERANDEREN 
// =========================
	function changeClass(id, newClass) {
		document.getElementById(id).className=newClass;
	}
	

// ================
//  TOP MENU HOVER 
// ================
	function menuHover(id, submenu, over) {
		if(over) {
			document.getElementById("menuTop"+id).className = "toppageHover";
			
			if(submenu) {
				document.getElementById("menuSub"+id).className = "subpageHover";
			}
		}
		else {
			document.getElementById("menuTop"+id).className = "toppage";
			
			if(submenu) {
				document.getElementById("menuSub"+id).className = "subpage";
			}
		}
	}
	
// ====================================
//  OPVRAGEN VAN STRAAT- EN PLAATSNAAM 
// ====================================
	function requestAdress(zipcode, housenr, returnStreet, returnCity) {
	 zipcode = zipcode.replace(/ /, "");
		// OPVRAGEN DATA
		 hiddenIFrame.location="./?module=contact&mode=requestadress&zip="+zipcode+"&housenr="+housenr+"&returnstreet="+returnStreet+"&returncity="+returnCity;
	}
	
// =========================	
//  CONTACTFORMULIER OPENEN 
// =========================
	function showContactForm() {
		xmlHttp = getXmlHttpObject();
	
		// CONTROLEREN OF AJAX WORDT ONDERSTEUNT
		if(xmlHttp==null) {
			window.location = "./?p=contact";
		}
		else {
			xmlHttp.onreadystatechange = showContactFormLoaded;
			xmlHttp.open("GET", "./?module=contact&random="+Math.random(), true);
			xmlHttp.send(null);
		}
	}
	
// ============================	
//  CONTACTFORMULIER WEERGEVEN
// ============================	
	function showContactFormLoaded() {
	 	// CONTROLEREN OF PAGINA GELADEN IS
	 	if(xmlHttp.readyState == 4) {
 		 	var contactFormHTML = "";

	 		// CONTROLEREN OF FEED NIET LEEG IS
	 		if(xmlHttp.responseText != "") {
	 			contactFormHTML = xmlHttp.responseText;
	 		}
	 		else {
	 			window.location = "./?p=contact";
	 		}
	 		
//	 		alert(contactFormHTML);
	 		
//			document.getElementById("portfolioDetailsBox").innerHTML = portfolioDetailsHTML;

			overlayData("Contactformulier", contactFormHTML, 0, 730, 580);
			overlayShow();
		}
	}
	
// ===========================
//  VERGROTING FOTO WEERGEVEN 
// ===========================
	function enlargePhoto(img, width, height) {
	 	overlayData("Persbericht bijlage", "<img src='"+img+"' width='"+width+"' height='"+height+"' alt='' />", 0, width, height);
	 	overlayShow();
	}
	
// ===========================
//  VERGROTING FOTO WEERGEVEN 
// ===========================
	function openImage(img) {
		document.getElementById("productPhotoDiv").innerHTML="<center><strong>Productnummer: "+img.replace(".jpg", "")+"</strong></center><br />&nbsp;<br /><img src=\"http://www.digital-data.nl/img/prod/"+img+"\" alt=\"\" />";
	 	overlayData("Productfoto", "productPhotoDiv", 1);
	 	overlayShow();
	}
