function home_image_switch(image,company,url) {
	document.getElementById('mainImage').src = image;
	document.getElementById('projectmainpic').className = company;
	document.getElementById('projectMainURL').href = url;
}

// open popup window
function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}