/* encode Email script */

var domain = "bellibambini.co.uk";

function hideEmail() 
{
   document.write("<a href=\"mailto");
   document.write(":" + name + "@");
   document.write(domain + "\" title=\"Contact "+domain+"\">" + name + "@" + domain + "<\/a>");
}

/* CSS Toggle Visability script */

function toggle( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.style.display == "none"){
  				target.style.display = "";
  			} else {
  				target.style.display = "none";
  			}
  	}
}

/* New Window Script */

var newWindow = null;

function openWindow(contentURL, windowName, windowWidth, windowHeight){
widthHeight = 'height=' + windowHeight +', width=' + windowWidth;
newWindow = window.open(contentURL, windowName, widthHeight);
newWindow.focus()
}