// force tables in  NN to go all the way to the right margin// by adding a transparent spacer		function makeIt (num,exception) { 	 		var browser = navigator.appName;			 var version = parseInt(navigator.appVersion);			 var width;			 var space;			 // pick location from browser address bar so script can be used at any level 			 var location = document.location.href.substr(0,document.location.href.indexOf('masterpiece/'));			 location += 'masterpiece/';				 		 			 if (browser == "Netscape" && version >= '4') {			 	width = window.innerWidth;			 	if (num == 'total') {		 			space = '<img src=' + location + 'images/spacer.gif width=' + width + ' height=1  border=0  alt="" />'; 		 			return space;		 		} else if (width <= num) {  		 			space = '&nbsp;';		 		} else {		 					 			width = width - num; 		 			//make sure path to spacer.gif is correct		 			space = '<img src=' + location + 'images/spacer.gif width=' + width + ' height=1  border=0  alt="" />'; 		 		}			 } else if (browser != "Netscape" && num == 'total') {		 		space = '';			 } else if (browser !="Netscape" && exception == "IE") {//				space = '';		 					space = '<img src=' + location + 'images/spacer.gif width=' + width + ' height=1  border=0  alt="" />'; 			 } else {			 	space = '&nbsp;';			 }			 return space;		}