function mdmspecs(productId, language, country, continent, set, label, module) {
	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/specs.jsp?id=' + productId + '&language=' + language + '&country=' + country + '&continent=' + continent + '&set=' + set + '&label=' + label + '&module=' + module,'Adres',settings);
	if(parseInt(navigator.appVersion) >= 4) {
	  dispWin.window.focus();
	}
}
	
function mdmimage(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/image.jsp?imageName=' + image,'Image',settings);
		
	if(parseInt(navigator.appVersion) >= 4) {
	  dispWin.window.focus();
	}	
}
