/*  IE hack: Add mouseover event to navbar list items.  */

startList = function() 
{
	var navRoots = new Array();
	navRoots[0] = "nav1";
	navRoots[1] = "nav2";
	navRoots[2] = "drop1a";
	navRoots[3] = "drop2a";

	if (document.all&&document.getElementById) 
	{
		for (root in navRoots)
		{
			navRoot = document.getElementById(navRoots[root]);
			for (i=0; i<navRoot.childNodes.length; i++) 
			{
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") 
				{
					node.onmouseover=function() 
					{
						this.className+=" over";
					}
  					node.onmouseout=function() 
					{
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
}

//Popup writer:


function popUp(image_url, width, height) 
{
   var view_width = parseInt(width) + 40;
   var view_height = parseInt(height) + 70;

   var view_width = view_width.toString();
   var view_height =  view_height.toString();

   var look="toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + view_width + ",height=" + view_height;

   popwin=window.open("","",look);
   popwin.document.open();
   popwin.document.write('<head><title>Enlargement</title>');
   popwin.document.write('<link rel="stylesheet" href="http://www.villagefabricandbernina.com/style.css" type="text/css" />');
   popwin.document.write('<meta http-equiv="imagetoolbar" content="no">');
   popwin.document.write('</head>');
   popwin.document.write('<body id="imgPop">');
   popwin.document.write('<div align="center">');
   popwin.document.write('<img src="'+image_url+'" />');
   popwin.document.write('<form><input type="submit" value="Close" class="close0" onmouseover="this.className=\'close1\'" onmouseout="this.className=\'close0\'" onclick="self.close();" /></form>');
   popwin.document.write('</div>');
   popwin.document.write('</body>');
   popwin.document.close();

}
