function fiximage(img){
	//var i = document.getElementById(img)
		var wx = img.width;
		var hy = img.height;
		if(wx > 175 ) {

            
            var ratio = 175/wx;

            // keep aspect ratio
            
            var h = Math.floor(hy * ratio);
		} else { var w = wx; var h = hy;}
		img.width=175;
		img.height=h;
}
	
function newWindow(url,winOptions){
	openWin = window.open(url, 'newwin', winOptions);
}


