//*******************************************************************
//** SMR_RESIZE_MOD: CONFIGURATION **********************************
//*******************************************************************
SMR_confMaxDim = 860; // pixels

//*******************************************************************
//** SMR_RESIZE_MOD: START CODE *************************************
//*******************************************************************
function SMR_resize(obj) 
{
	thisWidth = obj.width;
	thisHeight = obj.height;
   
	thisMaxDim = thisWidth;
   
	if(thisMaxDim > SMR_confMaxDim) 
	{
		thisMinDim = Math.round((thisHeight * SMR_confMaxDim) / thisMaxDim); 
      
        thisWidth = SMR_confMaxDim;
        thisHeight = thisMinDim;
	 }

	obj.height = thisHeight;
	obj.width = thisWidth;
}

function SMR_setLink(obj) {
   thisInnerHtml = obj.innerHTML;
   tmpArray = thisInnerHtml.split(' src=\"');
   tmpArray = tmpArray[1].split('"');
   obj.href = tmpArray[0];
}
//*******************************************************************
//** SMR_RESIZE_MOD: END ********************************************
//*******************************************************************
