function getNowYear()
{
	alert('aaa');
}

function openGenericImage(image_path,width,height)
{
	window.open("/opengenericimg.jxp?img="+image_path,null, "height="+height+",width="+width+",status=no,menubar=no,toolbar=no,location=no,scrollbars=no,resizable=no,titlebar=no,top=0,left=0");
}

function resizeImage(image_id, width, height)
{
	var image;

	image = document.getElementById(image_id);

	image.width=width;

	if (height != 0)
	{
		image.height=height;
	}

}