<!--

function ShowRoute (Picture,xsize,ysize)
{
	tmp = "width=" + xsize + ",height=" + ysize + ",scrollbars=no,menubar=no,resizable=yes,status=no,toolbar=no,location=no,left=25,top=25";
	newWnd = window.open(Picture,"1",tmp);
}

function ShowImage (Picture,xsize,ysize)
{
	tmp = "width=" + xsize + ",height=" + ysize + ",scrollbars=no,menubar=no,resizable=yes,status=no,toolbar=no,location=no,left=25,top=25";
	imageURL = "showImage.php?image=" + Picture + "&width=" + xsize + "&height=" + ysize;
	newWnd = window.open(imageURL,"1",tmp);
}

//-->