// reSize Image
function reSize112(i)
{
	var width = i.width;
	var height = i.height;
	
	if(width/height == 4/3)
	{
		i.width=112;
		i.height=84;
	}
	else if(width/height == 3/4)
	{
		i.width=84;
		i.height=112;
	}
	else
	{
		i.width=112;
	}
}

function reSize80(i)
{
	var width = i.width;
	var height = i.height;

	if(width/height == 4/3)
	{
		i.width=80;
		i.height=60;
	}
	else if(width/height == 3/4)
	{
		i.width=60;
		i.height=80;
	}
	else
	{
		i.width=80;
	}
}

function reSize(i, defaultSize)
{
	var new_img = new Image();
	new_img.src = i.src;

	var width = new_img.width;
	var height = new_img.height;
	
	if(width > height) {
		i.height = height * defaultSize/width;
		i.width = defaultSize;
	}
	else {
		i.width = width * defaultSize/height;
		i.height = defaultSize;
	}
}

function reSize_snap(i, defaultSize)
{

	var new_img = new Image();
	new_img.src = i.src;

	var width = new_img.width;
	var height = new_img.height;
	
	if(width > height) {
		i.height = height * defaultSize/width;
		i.width = defaultSize;
	}
	else {
		i.width = width * defaultSize/height;
		i.height = defaultSize;
	}
}

function goPage(i)
{	
	alert(i.value);
	//window.location.assign(encodeKeyword(1) + "&pagerMethod=&currentPage=" + i);
}
