First - correct way for setting styles is:
image.style.margin = "margin: 0 " + (300 - image.clientWidth / 2).toString() + "px";
(well, maybe there is no difference, but .style propery is supposed to be used for changing style of elements with JS)
Second - are you sure image is already loaded when that code is executed? If no - image.clientWidth might be not available yet. You may need to use onload event to run that code when image is loaded for sure.
Third - as stated in Bruno's answer, margin:0 auto; will automatically place your image centered inside a div, so no JS required at all.
EDIT:
But with 3rd approach you have a problem because image is not a block element. In order to make it work do something like this:
<div style="
width: 600px;
"><img src="Bilder/re-tabouret/lukas_baumgartner_re_tabouret_1@b.jpg" alt="mainArticleImg" class="projektMainImg" id="01:00" style=""></div>
wrap image into div with specified width and update css like this:
img.projektMainImg {
margin: 0 auto;
max-width: 600px;
max-height: 400px;
display: block;
}
(see display:block added)
Or simply wrap image with a div with specified width and add text-align:center to its style (no display block and margins needed):
<div style="
width: 600px;
text-align: center;
"><img src="Bilder/re-tabouret/lukas_baumgartner_re_tabouret_1@b.jpg" alt="mainArticleImg" class="projektMainImg" id="01:00" style=""></div>
Wraper div is required in order to center image in left 600px area. Otherwise it will be centered relatively to <div class="projektImages">