function showHideKlappText(status,id){
	var more = document.getElementById(id + 'More');
	var infoText2 = document.getElementById(id + '2');	
	if(status){
		if(id == 'infoText')
			infoText2.style.display = 'inline';
		else
			infoText2.style.display = 'block';
		more.style.display = 'none';		
	}else{
		infoText2.style.display = 'none';
		more.style.display = 'inline';		
	}
	if(id=='pressComment') setScreenshotProperty(status);
}

function setScreenshotProperty(status) {
	var screenshot = document.getElementById('screenshotDiv');
	var productrightTop = document.getElementById('productrightTopDiv');
	if(status){		
		screenshot.style.position = 'static';
		//productrightTop.style.height = 'auto';
	}else{		
		screenshot.style.position = 'absolute';
		productrightTop.style.height = '343px';
	}
}