function resizeTemplate(){
	var max=document.body.scrollHeight;  

	
	if(window.getComputedStyle){
		var hcontent = window.getComputedStyle(document.getElementById('content'), '').getPropertyValue('height');
		hcontent = hcontent.substr(0, hcontent.length-2);
	} else {
		var hcontent = document.getElementById("content").offsetHeight;
	}

	document.getElementById('master').style.height=max+"px"

	if (hcontent >= max - 187){
		max = hcontent;
		hcontent=parseInt(hcontent)+175;
		document.getElementById('master').style.height=hcontent+"px";
	};



    var hh = max-175;
    var cc = max-175;	
	document.getElementById('content').style.height=cc+"px";
	
    if (document.getElementById("Imagetext")) {document.getElementById('Imagetext').style.height=hh+"px";}
}