 /**
 * 
 * Paulius Podolskis <paulius@e-dev.lt> 
 * JS Lib for DreamsCMS
 * Date: 2007-11-29
 * 
 */
function change_foto(small, big, width, height, isbig){
	
 	if (isbig == false) {
		document.getElementById('foto').innerHTML = "<img src=\""+small+"\" alt=\"Bush\"/>";
		//onclick=\"window.open(\'"+small+"\',\'img\',\'width="+width+",height="+height+", left=\' + ((screen.width - "+width+"-40)/2) + \', top=\' + ((screen.height - "+height+"-40)/2)); return false;\" />";
 	}else{
		width += 40;
		height += 40;
		document.getElementById('foto').innerHTML = "<img src=\""+small+"\" onclick=\"window.open(\'"+big+"\',\'img\',\'width="+width+",height="+height+", left=\' + ((screen.width - "+width+"-40)/2) + \', top=\' + ((screen.height - "+height+"-40)/2)); return false;\" />";
	}
}
