function Replace (id,txt,img) {
var newP=document.createTextNode(txt);
var oldP=document.getElementById(id).firstChild;
document.getElementById(id+'_img').src='/img/'+id+'_image'+img+'.jpg';
document.getElementById(id).replaceChild(newP,oldP);
}
function picture(path){
var images=new Array(
"insidea_big3.jpg",
"insidea_big4.jpg",
"insidea_big6.jpg",
"ellinge_before_big4",
"ellinge_before_big5",
"internalfinish_big1",
"internalfinish_big2",
"internalfinish_big3",
"internalfinish_big4",
"internalfinish_big6",
"internalfinish_big7",
"internalfinish_big8",
"internalfinish_big9",
"malmo_big2",
"teckomatorp_roofa_big3"
);
var reg=/icon/i;
path=path.replace(reg,"image");
var reg=/image/i;
path=path.replace(reg,"big");
index=path.lastIndexOf('/')+1;
path=path.slice(index);
var x=623,y=410;
for(var i=0;i<images.length;i++){
	if(path==images[i]){
		x=410;
		y=623;
		}
	}
path='http://www.polish-constructor.com/pictures.php?pic='+path;
window.open(path,'Picture','toolbar=no,menubar=no,location=no,status=no,scrollbars=no,width='+x+',height='+y+',left=100,top=100,screenX=100,screenY=100');
}