function colourPreview(img, text) {
	var previewHtml = '<html><head><title>Kolor: ' + text + '</title></head>'
	   + '<body bgcolor="white">'
	   + '<div align="center">'
	   + '<img src="images/additional/colours/' + img + '"/><br/>' + text
	   + '</div>'
	   + '</body>'
	   + '</html>';
	preview = window.open('', 'preview', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=no, status=no, width=270, height=300');
	preview.document.writeln(previewHtml);
	preview.document.close();
}
