		function popspecs(productId, language, country, continent, set) {
			var w = 700;
			var h = 500;
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2;
			var settings  ='height='+h+',';
				settings +='width='+w+',';
				settings +='top='+wint+',';
				settings +='left='+winl+',';
				settings +='scrollbars=yes,';
				settings +='resizable=no';
			var dispWin = window.open('/mdm_includes/specs.jsp?id=' + productId + '&language=' + language + '&country=' + country + '&continent=' + continent + '&set=' + set,'Adres',settings);
			if(parseInt(navigator.appVersion) >= 4) {
			  dispWin.window.focus();
			}
		}
		
		function productspecs(productId, set) {
			showproductspecs(productId, set, '')
		}

		function showproductspecs(productId, set, vrv) {
			var w = 700;
			var h = 500;
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2;
			var settings  ='height='+h+',';
				settings +='width='+w+',';
				settings +='top='+wint+',';
				settings +='left='+winl+',';
				settings +='scrollbars=yes,';
				settings +='resizable=no';
			var dispWin = window.open('/mdm_includes/specs.jsp?id=' + productId + '&set=' + set + '&vrv=' + vrv,'Adres',settings);
			if(parseInt(navigator.appVersion) >= 4) {
			  dispWin.window.focus();
			}
		}		

		function pop(productId, language, country) {
			var w = 700;
			var h = 500;
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2;
			var settings  ='height='+h+',';
				settings +='width='+w+',';
				settings +='top='+wint+',';
				settings +='left='+winl+',';
				settings +='scrollbars=yes,';
				settings +='resizable=no';
			var dispWin = window.open('/mdm_includes/specs.jsp?id=' + productId + '&language=' + language + '&country=' + country,'Adres',settings);
			if(parseInt(navigator.appVersion) >= 4) {
			  dispWin.window.focus();
			}
		}
		
		function popupImage(image) {
			var w = 800;
			var h = 650;
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2;
			var settings  ='height='+h+',';
				settings +='width='+w+',';
				settings +='top='+wint+',';
				settings +='left='+winl+',';
				settings +='scrollbars=yes,';
				settings +='resizable=no';
			
			var dispWin = window.open('/mdm_includes/image.jsp?imageName=' + image,'Image',settings);
			
			if(parseInt(navigator.appVersion) >= 4) {
			  dispWin.window.focus();
			}
			
		}

		function mout(id) {
		this.document.getElementById(id).style.color = "#0099CC";
		}

		function mover(id) {
		this.document.getElementById(id).style.color = "#000000";
		}

		function mouti(id) {
		this.document.getElementById(id).style.borderColor = "#0099CC";
		}

		function moveri(id) {
		this.document.getElementById(id).style.borderColor = "#000000";
		}

		function showImage(image, nm) {
		var w = 200;
		var h = 200;
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
		var settings  ='height='+h+',';
			settings +='width='+w+',';
			settings +='top='+wint+',';
			settings +='left='+winl+',';
			settings +='scrollbars=auto,';
			settings +='resizable=no';
		var dispWin = window.open('mdm_includes/image.jsp?name=' + nm + '&url=' + image,'image',settings);
		if(parseInt(navigator.appVersion) >= 4) {
		  dispWin.window.focus();
		}
		}

		function showPrintable(){
		var url = 'printable.jsp?id=6330&locale=en    ';
		var w = screen.width-300;
		var h = screen.height-300;
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;

		var settings  ='height='+h+',';
			settings +='width='+w+',';
			settings +='top='+wint+',';
			settings +='left='+winl+',';
			settings +='scrollbars=yes,';
			settings +='resizable=no,';
			settings +='toolbar=no,';
			settings +='location=no,';
			settings +='menubar=yes';
		var dispWin = window.open(url,'printable',settings);
		if(parseInt(navigator.appVersion) >= 4) {
		  dispWin.window.focus();
		}
	  }
